Skip to content

Commit 0aeed7c

Browse files
committed
Add missing 'override'.
llvm-svn: 243773
1 parent e71e653 commit 0aeed7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clang-tidy/misc/UnusedAliasDeclsCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class UnusedAliasDeclsCheck : public ClangTidyCheck {
2222
: ClangTidyCheck(Name, Context) {}
2323
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
2424
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
25-
void onEndOfTranslationUnit();
25+
void onEndOfTranslationUnit() override;
2626

2727
private:
2828
llvm::DenseMap<const Decl *, CharSourceRange> FoundDecls;

0 commit comments

Comments
 (0)