From: Artem Dergachev Date: Thu, 28 Jun 2018 02:33:16 +0000 (+0000) Subject: [analyzer] Remove redundant ';'. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd011d17e27bab090b3a5ddf966be495ad8ed639;p=clang [analyzer] Remove redundant ';'. Fixes a compiler warning. No functionan change intended. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@335808 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Core/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp index c3f5b42a9f..27f7553e7a 100644 --- a/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -191,7 +191,7 @@ typedef std::pair typedef llvm::ImmutableSet ElidedDestructorSet; REGISTER_TRAIT_WITH_PROGRAMSTATE(ElidedDestructors, - ElidedDestructorSet); + ElidedDestructorSet) //===----------------------------------------------------------------------===// // Engine construction and deletion.