From: Michael Liao Date: Tue, 13 Aug 2019 21:26:42 +0000 (+0000) Subject: Remove the extra `;`. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d4ffabf31bab9f1b13b31cb5404e1828a4181c1;p=clang Remove the extra `;`. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@368748 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h b/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h index f73fd29805..7fb82a58a9 100644 --- a/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h +++ b/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h @@ -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.