diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2011-07-23 16:14:35 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2011-07-23 16:14:35 +0000 |
| commit | 7e6ca972c98956e5d438ad3ff840006fd650c71a (patch) | |
| tree | 7b55a662ec727064b8ad8636abab7031cc5d88b9 | |
| parent | 24fc69e5315e81282eb5685f9f29a24aa2f43a45 (diff) | |
| download | bcm5719-llvm-7e6ca972c98956e5d438ad3ff840006fd650c71a.tar.gz bcm5719-llvm-7e6ca972c98956e5d438ad3ff840006fd650c71a.zip | |
http://llvm.org/bugs/show_bug.cgi?id=10455
llvm-svn: 135854
| -rw-r--r-- | libcxx/include/unordered_map | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/unordered_map b/libcxx/include/unordered_map index e1381f7614d..bf6b688a6fa 100644 --- a/libcxx/include/unordered_map +++ b/libcxx/include/unordered_map @@ -560,9 +560,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; |

