aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/ImmutableMap.h
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-02-22 22:48:47 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-02-22 22:48:47 +0000
commit2d76ad6df91d3192f986efd19d70a6d892a05b6c (patch)
tree8a56785a3ed0042dcf3b79495c152eaea1756754 /include/llvm/ADT/ImmutableMap.h
parentc4f3d51e12390f39f314451d868350e2a11a52b6 (diff)
downloadexternal_llvm-2d76ad6df91d3192f986efd19d70a6d892a05b6c.zip
external_llvm-2d76ad6df91d3192f986efd19d70a6d892a05b6c.tar.gz
external_llvm-2d76ad6df91d3192f986efd19d70a6d892a05b6c.tar.bz2
Fix C++0x incompatibility. The signature of std::make_pair<> changes from:
template <class T1, class T2> pair<T1,T2> make_pair(const T1&, const T2&); to template <class T1, class T2> pair<V1, V2> make_pair(T1&&, T2&&); so explicitly specifying the template arguments to make_pair<> is going to break when C++0x rolls through. Replace them with equivalent std::pair<>. Patch by James Dennett! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126256 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/ImmutableMap.h')
-rw-r--r--include/llvm/ADT/ImmutableMap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/ImmutableMap.h b/include/llvm/ADT/ImmutableMap.h
index e439a09..d6cce7c 100644
--- a/include/llvm/ADT/ImmutableMap.h
+++ b/include/llvm/ADT/ImmutableMap.h
@@ -108,7 +108,7 @@ public:
ImmutableMap getEmptyMap() { return ImmutableMap(F.getEmptyTree()); }
ImmutableMap add(ImmutableMap Old, key_type_ref K, data_type_ref D) {
- TreeTy *T = F.add(Old.Root, std::make_pair<key_type,data_type>(K,D));
+ TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D));
return ImmutableMap(Canonicalize ? F.getCanonicalTree(T): T);
}