r368748 - Remove the extra `;`.
Michael Liao via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 13 14:26:42 PDT 2019
Author: hliao
Date: Tue Aug 13 14:26:42 2019
New Revision: 368748
URL: http://llvm.org/viewvc/llvm-project?rev=368748&view=rev
Log:
Remove the extra `;`.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
Modified: cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h?rev=368748&r1=368747&r2=368748&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h Tue Aug 13 14:26:42 2019
@@ -515,7 +515,7 @@ public:
GRBugReporter(BugReporterData& d, ExprEngine& eng)
: BugReporter(d, GRBugReporterKind), Eng(eng) {}
- ~GRBugReporter() override = default;;
+ ~GRBugReporter() override = default;
/// getGraph - Get the exploded graph created by the analysis engine
/// for the analyzed method or function.
More information about the cfe-commits
mailing list