From e8018f24f0f0e1cb1490c37b158da5d5c456e577 Mon Sep 17 00:00:00 2001 From: Anton Yartsev Date: Fri, 23 Mar 2012 02:43:24 +0000 Subject: [PATCH] corrected check::EndOfTranslationUnit checker name and added 'const' to declaration git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153302 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp b/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp index a5f9d300c9..843502f970 100644 --- a/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp +++ b/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp @@ -145,9 +145,9 @@ public: /// \brief Called after analysis of a TranslationUnit is complete. /// /// check::EndOfTranslationUnit - void checkEndTranslationUnit(const TranslationUnitDecl *TU, - AnalysisManager &Mgr, - BugReporter &BR) {} + void checkEndOfTranslationUnit(const TranslationUnitDecl *TU, + AnalysisManager &Mgr, + BugReporter &BR) const {} /// \brief Evaluates function call. -- 2.50.1