From 68c4bb5dda3b615e37c0775b8625e80a809f13a9 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Wed, 30 Nov 2016 01:32:53 +0000 Subject: [PATCH] Fix -Winconsistent-missing-override in CodeGenAction.cpp llvm-svn: 288227 --- clang/lib/CodeGen/CodeGenAction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 795b3a06f004..1e17918df4a4 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -152,7 +152,7 @@ namespace clang { LLVMIRGeneration.stopTimer(); } - void HandleInterestingDecl(DeclGroupRef D) { + void HandleInterestingDecl(DeclGroupRef D) override { // Ignore interesting decls from the AST reader after IRGen is finished. if (!IRGenFinished) HandleTopLevelDecl(D);