From: Manuel Klimek Date: Wed, 6 Aug 2014 14:21:59 +0000 (+0000) Subject: Remove unnecessary semicolon. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9e2473e7db8ab4340f412ff40536e162aaf0b6b;p=clang Remove unnecessary semicolon. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214970 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Core/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp index 9cca4d33a9..b30a4417e9 100644 --- a/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -58,7 +58,7 @@ typedef std::pair // The StackFrameContext assures that nested calls due to inlined recursive // functions do not interfere. REGISTER_TRAIT_WITH_PROGRAMSTATE(InitializedTemporariesSet, - llvm::ImmutableSet); + llvm::ImmutableSet) //===----------------------------------------------------------------------===// // Engine construction and deletion.