2016-12-18 00:35:53 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef NonMemMovableTemplateArgChecker_h__
|
|
|
|
#define NonMemMovableTemplateArgChecker_h__
|
|
|
|
|
|
|
|
#include "plugin.h"
|
|
|
|
|
2016-12-18 05:14:37 +03:00
|
|
|
class NonMemMovableTemplateArgChecker : public BaseCheck {
|
2016-12-18 00:35:53 +03:00
|
|
|
public:
|
2016-12-18 05:14:37 +03:00
|
|
|
NonMemMovableTemplateArgChecker(StringRef CheckName,
|
|
|
|
ContextType *Context = nullptr)
|
2017-10-20 20:11:50 +03:00
|
|
|
: BaseCheck(CheckName, Context) {}
|
|
|
|
void registerMatchers(MatchFinder *AstMatcher) override;
|
2016-12-18 05:14:37 +03:00
|
|
|
void check(const MatchFinder::MatchResult &Result) override;
|
2016-12-18 00:35:53 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|