r326324 - [analyzer] Fix a compiler warning

Gabor Horvath via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 28 06:01:48 PST 2018


Author: xazax
Date: Wed Feb 28 06:01:48 2018
New Revision: 326324

URL: http://llvm.org/viewvc/llvm-project?rev=326324&view=rev
Log:
[analyzer] Fix a compiler warning

Modified:
    cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h

Modified: cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h?rev=326324&r1=326323&r2=326324&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h Wed Feb 28 06:01:48 2018
@@ -155,7 +155,8 @@ public:
 
   BugReporter& getBugReporter() { return BR; }
 
-  cross_tu::CrossTranslationUnitContext *getCrossTranslationUnitContext() {
+  cross_tu::CrossTranslationUnitContext *
+  getCrossTranslationUnitContext() override {
     return &CTU;
   }
 




More information about the cfe-commits mailing list