diff options
author | Dan Liew <dan@su-root.co.uk> | 2016-05-26 21:54:25 +0000 |
---|---|---|
committer | Dan Liew <dan@su-root.co.uk> | 2016-05-26 21:54:25 +0000 |
commit | 9551fdd51720bbbac1dc420dbbbe62a5ce455bf4 (patch) | |
tree | d7e78df27eefe48f258da042e5c3df4b6bc72575 | |
parent | c6a4ab0ce3bb3d4cb3533d3581d8ae6abb230494 (diff) | |
download | bcm5719-llvm-9551fdd51720bbbac1dc420dbbbe62a5ce455bf4.tar.gz bcm5719-llvm-9551fdd51720bbbac1dc420dbbbe62a5ce455bf4.zip |
[LibFuzzer] Add missing #include<string>
This partially fixes the compilation of the LibFuzzer unit test
on OSX using AppleClang.
llvm-svn: 270926
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerFnAdapter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerFnAdapter.h b/llvm/lib/Fuzzer/FuzzerFnAdapter.h index ae121d238dc..eb2c219b870 100644 --- a/llvm/lib/Fuzzer/FuzzerFnAdapter.h +++ b/llvm/lib/Fuzzer/FuzzerFnAdapter.h @@ -19,6 +19,7 @@ #include <stdint.h> #include <algorithm> +#include <string> #include <tuple> #include <vector> |