Browse Source

Fix -Winconsistent-missing-override in CodeGenAction.cpp

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@288227 91177308-0d34-0410-b5e6-96231b3b80d8
Reid Kleckner 8 years ago
parent
commit
03313c383f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/CodeGen/CodeGenAction.cpp

+ 1 - 1
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);