forked from OSchip/llvm-project
Adding missing #includes to try to get this to compile on Windows with Visual Studio.
llvm-svn: 227445
This commit is contained in:
parent
78070fbae5
commit
d39df1e24d
|
@ -10,6 +10,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "FuzzerInternal.h"
|
||||
#include <algorithm>
|
||||
|
||||
namespace fuzzer {
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// Simple test for a fuzzer. The fuzzer must find the string "FUZZER".
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstddef>
|
||||
#include <iostream>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// Simple test for a fuzzer. The fuzzer must find the string "Hi!".
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstddef>
|
||||
#include <iostream>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// Simple test for a fuzzer. The fuzzer must find the string "Hi!".
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstddef>
|
||||
#include <iostream>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// Simple test for a fuzzer. The fuzzer must find the string "Hi!".
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstddef>
|
||||
#include <iostream>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// Simple test for a fuzzer. The fuzzer must find the string "Hi!".
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstddef>
|
||||
#include <iostream>
|
||||
|
|
Loading…
Reference in New Issue