[llvm] r270926 - [LibFuzzer] Add missing #include<string>

Dan Liew via llvm-commits llvm-commits at lists.llvm.org
Thu May 26 14:54:27 PDT 2016


Author: delcypher
Date: Thu May 26 16:54:25 2016
New Revision: 270926

URL: http://llvm.org/viewvc/llvm-project?rev=270926&view=rev
Log:
[LibFuzzer] Add missing #include<string>

This partially fixes the compilation of the LibFuzzer unit test
on OSX using AppleClang.

Modified:
    llvm/trunk/lib/Fuzzer/FuzzerFnAdapter.h

Modified: llvm/trunk/lib/Fuzzer/FuzzerFnAdapter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/FuzzerFnAdapter.h?rev=270926&r1=270925&r2=270926&view=diff
==============================================================================
--- llvm/trunk/lib/Fuzzer/FuzzerFnAdapter.h (original)
+++ llvm/trunk/lib/Fuzzer/FuzzerFnAdapter.h Thu May 26 16:54:25 2016
@@ -19,6 +19,7 @@
 #include <stdint.h>
 
 #include <algorithm>
+#include <string>
 #include <tuple>
 #include <vector>
 




More information about the llvm-commits mailing list