diff options
| author | Chris Dewhurst <chris.dewhurst@lero.ie> | 2016-08-09 20:32:59 +0000 | 
|---|---|---|
| committer | Chris Dewhurst <chris.dewhurst@lero.ie> | 2016-08-09 20:32:59 +0000 | 
| commit | 822d4a09e36644541e952cef35e9bbaf08fe555f (patch) | |
| tree | 0bc9f89f4f03101c52252c50219dd28999763d11 | |
| parent | 85449e8517a083ac3f276529181a444f5ee34ccf (diff) | |
| download | bcm5719-llvm-822d4a09e36644541e952cef35e9bbaf08fe555f.tar.gz bcm5719-llvm-822d4a09e36644541e952cef35e9bbaf08fe555f.zip  | |
Without explicitly including <string>, I'm getting an error on the new code in this file. Won't present an issue for anyone that isn't having the same trouble as me.
llvm-svn: 278159
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/JITSymbol.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/JITSymbol.h b/llvm/include/llvm/ExecutionEngine/JITSymbol.h index 9b096896e75..658cbe4b110 100644 --- a/llvm/include/llvm/ExecutionEngine/JITSymbol.h +++ b/llvm/include/llvm/ExecutionEngine/JITSymbol.h @@ -15,6 +15,7 @@  #define LLVM_EXECUTIONENGINE_JITSYMBOL_H  #include "llvm/Support/DataTypes.h" +#include <string>  #include <cassert>  #include <functional>  | 

