diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-04-11 02:18:41 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-04-11 02:18:41 +0000 |
commit | 40dab2ce86815a3f49236ad43fd8e2e360e9ae5e (patch) | |
tree | b9b136ed4117c593ebd993c1471946dac5f47112 /libcxx/include/map | |
parent | 8a01a751c9389234d02a7af1d99baf296af58d3d (diff) | |
download | bcm5719-llvm-40dab2ce86815a3f49236ad43fd8e2e360e9ae5e.tar.gz bcm5719-llvm-40dab2ce86815a3f49236ad43fd8e2e360e9ae5e.zip |
http://llvm.org/bugs/show_bug.cgi?id=9672
llvm-svn: 129266
Diffstat (limited to 'libcxx/include/map')
-rw-r--r-- | libcxx/include/map | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/map b/libcxx/include/map index fdd13384718..1c77c49c5ca 100644 --- a/libcxx/include/map +++ b/libcxx/include/map @@ -567,9 +567,9 @@ public: typedef const value_type& reference; typedef typename __pointer_traits::template #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES - rebind<value_type> + rebind<const value_type> #else - rebind<value_type>::other + rebind<const value_type>::other #endif pointer; |