gecko-dev/build/clang-plugin/MustOverrideChecker.h
Andi-Bogdan Postelnicu 5392090016 Bug 1589096 - add registerPPCallbacks to our version of clang-tidy due to a limitation in mozilla-must-override. r=sylvestre
In the future we should re-write this checker but for now this solution is acceptable.

Differential Revision: https://phabricator.services.mozilla.com/D51242

--HG--
extra : moz-landing-system : lando
2019-10-31 12:16:35 +00:00

23 lines
708 B
C++

/* 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 MustOverrideChecker_h__
#define MustOverrideChecker_h__
#include "plugin.h"
class MustOverrideChecker : public BaseCheck {
public:
MustOverrideChecker(StringRef CheckName, ContextType *Context = nullptr)
: BaseCheck(CheckName, Context), CI(nullptr) {}
void registerMatchers(MatchFinder *AstMatcher) override;
void registerPPCallbacks(CompilerInstance &CI) override;
void check(const MatchFinder::MatchResult &Result) override;
private:
const CompilerInstance *CI;
};
#endif