[llvm] r301616 - Remove unnecessary semicolon

Sanjoy Das via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 27 21:49:32 PDT 2017


Author: sanjoy
Date: Thu Apr 27 23:49:32 2017
New Revision: 301616

URL: http://llvm.org/viewvc/llvm-project?rev=301616&view=rev
Log:
Remove unnecessary semicolon

This shows up as a -Wpendatic error on GCC.

Modified:
    llvm/trunk/lib/Fuzzer/FuzzerInternal.h

Modified: llvm/trunk/lib/Fuzzer/FuzzerInternal.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/FuzzerInternal.h?rev=301616&r1=301615&r2=301616&view=diff
==============================================================================
--- llvm/trunk/lib/Fuzzer/FuzzerInternal.h (original)
+++ llvm/trunk/lib/Fuzzer/FuzzerInternal.h Thu Apr 27 23:49:32 2017
@@ -145,6 +145,6 @@ private:
   static thread_local bool IsMyThread;
 };
 
-}; // namespace fuzzer
+} // namespace fuzzer
 
 #endif // LLVM_FUZZER_INTERNAL_H




More information about the llvm-commits mailing list