From: Reid Kleckner Date: Wed, 30 Nov 2016 01:32:53 +0000 (+0000) Subject: Fix -Winconsistent-missing-override in CodeGenAction.cpp X-Git-Tag: llvmorg-4.0.0-rc1~3388 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68c4bb5dda3b615e37c0775b8625e80a809f13a9;p=platform%2Fupstream%2Fllvm.git Fix -Winconsistent-missing-override in CodeGenAction.cpp llvm-svn: 288227 --- diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 795b3a0..1e17918 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);