summaryrefslogtreecommitdiff
path: root/test/Analysis
diff options
context:
space:
mode:
authorGeorge Karpenkov <ekarpenkov@apple.com>2017-10-25 00:03:45 +0000
committerGeorge Karpenkov <ekarpenkov@apple.com>2017-10-25 00:03:45 +0000
commit207aa590d0843db47c1438c35bd782a30799a4c0 (patch)
tree034fe00642caab087021c38111ecee6874f99471 /test/Analysis
parentde45a2e1b73ff6509f99c707ee553a6319ed25c7 (diff)
[Analyzer] Remove unnecessary semicolon in analyzer tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@316538 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis')
-rw-r--r--test/Analysis/call_once.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/call_once.cpp b/test/Analysis/call_once.cpp
index 2154be6f48..5013cd423e 100644
--- a/test/Analysis/call_once.cpp
+++ b/test/Analysis/call_once.cpp
@@ -295,7 +295,7 @@ void test_mutator_noref() {
// even when an ampersand is not explicitly set.
void callbackn(int &param) {
param = 42;
-};
+}
void test_implicit_funcptr() {
int x = 0;
static std::once_flag flagn;