Add missing include guard to FuzzerInternal.h, NFC.

llvm-svn: 244457
This commit is contained in:
Yaron Keren 2015-08-10 16:37:40 +00:00
parent 4adb0279a8
commit 347663b214
1 changed files with 6 additions and 0 deletions

View 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