Minor bug fix for allowing an extension of const-qualified types in containers.

llvm-svn: 183481
This commit is contained in:
Howard Hinnant 2013-06-07 01:56:37 +00:00
parent 1a8aa4c04e
commit 30444adc70
1 changed files with 1 additions and 1 deletions

View File

@ -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;