diff options
author | Manuel Klimek <klimek@google.com> | 2014-08-06 14:21:59 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2014-08-06 14:21:59 +0000 |
commit | 89df13e9134b0d8e40fddb4e7508354f0fa2a05c (patch) | |
tree | 6bcfae960e783681d03d2979605b599646038d77 /clang | |
parent | 78b1949950439959ecfd9185a13e42886dd712a2 (diff) | |
download | bcm5719-llvm-89df13e9134b0d8e40fddb4e7508354f0fa2a05c.tar.gz bcm5719-llvm-89df13e9134b0d8e40fddb4e7508354f0fa2a05c.zip |
Remove unnecessary semicolon.
llvm-svn: 214970
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp index 9cca4d33a9c..b30a4417e9a 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -58,7 +58,7 @@ typedef std::pair<const CXXBindTemporaryExpr *, const StackFrameContext *> // The StackFrameContext assures that nested calls due to inlined recursive // functions do not interfere. REGISTER_TRAIT_WITH_PROGRAMSTATE(InitializedTemporariesSet, - llvm::ImmutableSet<CXXBindTemporaryContext>); + llvm::ImmutableSet<CXXBindTemporaryContext>) //===----------------------------------------------------------------------===// // Engine construction and deletion. |