Add missing include guard to FuzzerInternal.h, NFC.
authorYaron Keren <yaron.keren@gmail.com>
Mon, 10 Aug 2015 16:37:40 +0000 (16:37 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Mon, 10 Aug 2015 16:37:40 +0000 (16:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244457 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Fuzzer/FuzzerInternal.h

index 7e119d6f61643a879a7b9999c33cdc88186a39bf..abda08b627caf63aa3ae382f48c22473dec30152 100644 (file)
@@ -8,6 +8,10 @@
 //===----------------------------------------------------------------------===//
 // Define the main class fuzzer::Fuzzer and most functions.
 //===----------------------------------------------------------------------===//
+
+#ifndef LLVM_FUZZER_INTERNAL_H
+#define LLVM_FUZZER_INTERNAL_H
+
 #include <cassert>
 #include <climits>
 #include <chrono>
@@ -162,3 +166,5 @@ class SimpleUserSuppliedFuzzer: public UserSuppliedFuzzer {
 };
 
 };  // namespace fuzzer
+
+#endif // LLVM_FUZZER_INTERNAL_H