We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 117eb01 commit 40570f9Copy full SHA for 40570f9
clang-tools-extra/clang-tidy/bugprone/InconsistentIfelseBracesCheck.h
@@ -24,9 +24,6 @@ class InconsistentIfelseBracesCheck : public ClangTidyCheck {
24
: ClangTidyCheck(Name, Context) {}
25
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
26
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
27
- bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
28
- return LangOpts.CPlusPlus;
29
- }
30
31
private:
32
void checkIfStmt(const ast_matchers::MatchFinder::MatchResult &Result,
0 commit comments