[cfe-commits] [libcxx] r135854 - /libcxx/trunk/include/unordered_map

Howard Hinnant hhinnant at apple.com
Sat Jul 23 09:14:35 PDT 2011


Author: hhinnant
Date: Sat Jul 23 11:14:35 2011
New Revision: 135854

URL: http://llvm.org/viewvc/llvm-project?rev=135854&view=rev
Log:
http://llvm.org/bugs/show_bug.cgi?id=10455

Modified:
    libcxx/trunk/include/unordered_map

Modified: libcxx/trunk/include/unordered_map
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/unordered_map?rev=135854&r1=135853&r2=135854&view=diff
==============================================================================
--- libcxx/trunk/include/unordered_map (original)
+++ libcxx/trunk/include/unordered_map Sat Jul 23 11:14:35 2011
@@ -560,9 +560,9 @@
     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;
 





More information about the cfe-commits mailing list