aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/IPO/ConstantMerge.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Transforms/IPO/ConstantMerge.h')
-rw-r--r--include/llvm/Transforms/IPO/ConstantMerge.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/IPO/ConstantMerge.h b/include/llvm/Transforms/IPO/ConstantMerge.h
index 6eed771..37d830c 100644
--- a/include/llvm/Transforms/IPO/ConstantMerge.h
+++ b/include/llvm/Transforms/IPO/ConstantMerge.h
@@ -24,7 +24,7 @@ class GlobalVariable;
class ConstantMerge : public Pass {
protected:
- map<Constant*, GlobalVariable*> Constants;
+ std::map<Constant*, GlobalVariable*> Constants;
unsigned LastConstantSeen;
public:
inline ConstantMerge() : LastConstantSeen(0) {}