From 30444adc70a2a7f02d5fd59ef51da5131480dca7 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Fri, 7 Jun 2013 01:56:37 +0000 Subject: [PATCH] Minor bug fix for allowing an extension of const-qualified types in containers. llvm-svn: 183481 --- libcxx/include/memory | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/include/memory b/libcxx/include/memory index 912a43f64f35..bcf4d6de7546 100644 --- a/libcxx/include/memory +++ b/libcxx/include/memory @@ -1750,7 +1750,7 @@ public: typedef const _Tp* const_pointer; typedef const _Tp& reference; typedef const _Tp& const_reference; - typedef _Tp value_type; + typedef const _Tp value_type; typedef true_type propagate_on_container_move_assignment;