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 e71e653 commit 0aeed7cCopy full SHA for 0aeed7c
clang-tools-extra/clang-tidy/misc/UnusedAliasDeclsCheck.h
@@ -22,7 +22,7 @@ class UnusedAliasDeclsCheck : public ClangTidyCheck {
22
: ClangTidyCheck(Name, Context) {}
23
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
24
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
25
- void onEndOfTranslationUnit();
+ void onEndOfTranslationUnit() override;
26
27
private:
28
llvm::DenseMap<const Decl *, CharSourceRange> FoundDecls;
0 commit comments