summaryrefslogtreecommitdiffstats
path: root/lib/Fuzzer
diff options
context:
space:
mode:
authorSanjoy Das <sanjoy@playingwithpointers.com>2017-04-28 04:49:32 +0000
committerSanjoy Das <sanjoy@playingwithpointers.com>2017-04-28 04:49:32 +0000
commitafd31bcedd92ec83fb4c4c8deb156b09131a4ab5 (patch)
tree8fe1ae223b959fc2e60069f8e4f6873d2ddc1ce8 /lib/Fuzzer
parentedb3c90b175e5159a3a884196e2975108d38688e (diff)
Remove unnecessary semicolon
This shows up as a -Wpendatic error on GCC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@301616 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Fuzzer')
-rw-r--r--lib/Fuzzer/FuzzerInternal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Fuzzer/FuzzerInternal.h b/lib/Fuzzer/FuzzerInternal.h
index c26615631ecd..ad067ee2c0d9 100644
--- a/lib/Fuzzer/FuzzerInternal.h
+++ b/lib/Fuzzer/FuzzerInternal.h
@@ -145,6 +145,6 @@ private:
static thread_local bool IsMyThread;
};
-}; // namespace fuzzer
+} // namespace fuzzer
#endif // LLVM_FUZZER_INTERNAL_H