Adding missing #includes to try to get this to compile on Windows with Visual Studio.
authorAaron Ballman <aaron@aaronballman.com>
Thu, 29 Jan 2015 15:19:13 +0000 (15:19 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Thu, 29 Jan 2015 15:19:13 +0000 (15:19 +0000)
llvm-svn: 227445

llvm/lib/Fuzzer/FuzzerCrossOver.cpp
llvm/lib/Fuzzer/test/ExactTest.cpp
llvm/lib/Fuzzer/test/InfiniteTest.cpp
llvm/lib/Fuzzer/test/NullDerefTest.cpp
llvm/lib/Fuzzer/test/SimpleTest.cpp
llvm/lib/Fuzzer/test/TimeoutTest.cpp

index 87ad555..94af6d5 100644 (file)
@@ -10,6 +10,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "FuzzerInternal.h"
+#include <algorithm>
 
 namespace fuzzer {
 
index 662dd33..c9898f3 100644 (file)
@@ -1,4 +1,5 @@
 // Simple test for a fuzzer. The fuzzer must find the string "FUZZER".
+#include <cstdint>
 #include <cstdlib>
 #include <cstddef>
 #include <iostream>
index 9f4864a..ee1635d 100644 (file)
@@ -1,4 +1,5 @@
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
+#include <cstdint>
 #include <cstdlib>
 #include <cstddef>
 #include <iostream>
index 602276f..8811e38 100644 (file)
@@ -1,4 +1,5 @@
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
+#include <cstdint>
 #include <cstdlib>
 #include <cstddef>
 #include <iostream>
index 9e20d8e..adb90ce 100644 (file)
@@ -1,4 +1,5 @@
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
+#include <cstdint>
 #include <cstdlib>
 #include <cstddef>
 #include <iostream>
index c5a8ac0..266ead6 100644 (file)
@@ -1,4 +1,5 @@
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
+#include <cstdint>
 #include <cstdlib>
 #include <cstddef>
 #include <iostream>