summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Mangler.h
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2003-07-28 16:42:33 +0000
committerTanya Lattner <tonic@nondot.org>2003-07-28 16:42:33 +0000
commitebb20c51fa003192493a1718e37ce45a9e3998c5 (patch)
tree0931b3deeaa033a417157d3582fbd439d5526551 /include/llvm/Support/Mangler.h
parent38b8979da186e4d97a09083e873e4dd7c9e80030 (diff)
downloadllvm-ebb20c51fa003192493a1718e37ce45a9e3998c5.tar.gz
llvm-ebb20c51fa003192493a1718e37ce45a9e3998c5.tar.bz2
llvm-ebb20c51fa003192493a1718e37ce45a9e3998c5.tar.xz
Need to include <string> to fix compile error on Sun
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Mangler.h')
-rw-r--r--include/llvm/Support/Mangler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h
index 502b797343..533b44f525 100644
--- a/include/llvm/Support/Mangler.h
+++ b/include/llvm/Support/Mangler.h
@@ -11,6 +11,7 @@ class Value;
class Module;
#include <map>
#include <set>
+#include <string>
class Mangler {
public: