diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-07-01 21:23:40 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-07-01 21:23:40 +0000 |
commit | f43a42d53e21e5860217ede634f8eea6d25d3a18 (patch) | |
tree | e50882487d6bd172583eb9d2301012d2cb76baf7 /libcxx/include | |
parent | acfd55b039f8bc29b34dd9df89c71f7183793269 (diff) | |
download | bcm5719-llvm-f43a42d53e21e5860217ede634f8eea6d25d3a18.tar.gz bcm5719-llvm-f43a42d53e21e5860217ede634f8eea6d25d3a18.zip |
Noticed that std::allocator<const T> was missing the definition for is_always_equal. Fixed this, and added a test for it.
llvm-svn: 241190
Diffstat (limited to 'libcxx/include')
-rw-r--r-- | libcxx/include/memory | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/include/memory b/libcxx/include/memory index 69702c6192f..26ba5642ce1 100644 --- a/libcxx/include/memory +++ b/libcxx/include/memory @@ -1787,6 +1787,7 @@ public: typedef const _Tp value_type; typedef true_type propagate_on_container_move_assignment; + typedef true_type is_always_equal; template <class _Up> struct rebind {typedef allocator<_Up> other;}; |