forked from theuni/bitcoin-tidy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesig_init.h
27 lines (19 loc) · 823 Bytes
/
desig_init.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) 2022 Cory Fields
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef DESIG_INIT_H
#define DESIG_INIT_H
#include <clang-tidy/ClangTidyCheck.h>
namespace bitcoin {
class DesigInitCheck final : public clang::tidy::ClangTidyCheck {
public:
DesigInitCheck(clang::StringRef Name, clang::tidy::ClangTidyContext *Context)
: clang::tidy::ClangTidyCheck(Name, Context) {}
bool isLanguageVersionSupported(const clang::LangOptions &LangOpts) const override {
return LangOpts.CPlusPlus;
}
void registerMatchers(clang::ast_matchers::MatchFinder *Finder) override;
void check(const clang::ast_matchers::MatchFinder::MatchResult &Result) override;
};
} // namespace bitcoin
#endif // DESIG_INIT_H