diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2015-01-29 15:19:13 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2015-01-29 15:19:13 +0000 |
commit | d39df1e24de9866e157f2c56fdc4016f1433b956 (patch) | |
tree | 15aac68f983198aafc75402f8f2adf20a6e1b21c /llvm/lib/Fuzzer/test/SimpleTest.cpp | |
parent | 78070fbae59b29b5fc7b970b948a9991cc9e9bbc (diff) | |
download | llvm-d39df1e24de9866e157f2c56fdc4016f1433b956.zip llvm-d39df1e24de9866e157f2c56fdc4016f1433b956.tar.gz llvm-d39df1e24de9866e157f2c56fdc4016f1433b956.tar.bz2 |
Adding missing #includes to try to get this to compile on Windows with Visual Studio.
llvm-svn: 227445
Diffstat (limited to 'llvm/lib/Fuzzer/test/SimpleTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/SimpleTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/test/SimpleTest.cpp b/llvm/lib/Fuzzer/test/SimpleTest.cpp index 9e20d8e..adb90ce 100644 --- a/llvm/lib/Fuzzer/test/SimpleTest.cpp +++ b/llvm/lib/Fuzzer/test/SimpleTest.cpp @@ -1,4 +1,5 @@ // Simple test for a fuzzer. The fuzzer must find the string "Hi!". +#include <cstdint> #include <cstdlib> #include <cstddef> #include <iostream> |