From: Yaron Keren Date: Mon, 10 Aug 2015 16:37:40 +0000 (+0000) Subject: Add missing include guard to FuzzerInternal.h, NFC. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b80a26544b486cd8c24e2c1eb8f0935e3420674f;p=oota-llvm.git Add missing include guard to FuzzerInternal.h, NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244457 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/FuzzerInternal.h b/lib/Fuzzer/FuzzerInternal.h index 7e119d6f616..abda08b627c 100644 --- a/lib/Fuzzer/FuzzerInternal.h +++ b/lib/Fuzzer/FuzzerInternal.h @@ -8,6 +8,10 @@ //===----------------------------------------------------------------------===// // Define the main class fuzzer::Fuzzer and most functions. //===----------------------------------------------------------------------===// + +#ifndef LLVM_FUZZER_INTERNAL_H +#define LLVM_FUZZER_INTERNAL_H + #include #include #include @@ -162,3 +166,5 @@ class SimpleUserSuppliedFuzzer: public UserSuppliedFuzzer { }; }; // namespace fuzzer + +#endif // LLVM_FUZZER_INTERNAL_H