diff options
| author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2017-04-28 04:49:32 +0000 |
|---|---|---|
| committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2017-04-28 04:49:32 +0000 |
| commit | 730edccb244ad702d62fe758e3583923b6030cf6 (patch) | |
| tree | 0ee69c6f14ca36f2329b650258a4d76575ace178 | |
| parent | ba0daee6b236cfda7488c68a1f16d51b6a60d521 (diff) | |
| download | bcm5719-llvm-730edccb244ad702d62fe758e3583923b6030cf6.tar.gz bcm5719-llvm-730edccb244ad702d62fe758e3583923b6030cf6.zip | |
Remove unnecessary semicolon
This shows up as a -Wpendatic error on GCC.
llvm-svn: 301616
| -rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index c26615631ec..ad067ee2c0d 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -145,6 +145,6 @@ private: static thread_local bool IsMyThread; }; -}; // namespace fuzzer +} // namespace fuzzer #endif // LLVM_FUZZER_INTERNAL_H |

