summaryrefslogtreecommitdiffstats
path: root/libcxx/include
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2015-07-01 21:23:40 +0000
committerMarshall Clow <mclow.lists@gmail.com>2015-07-01 21:23:40 +0000
commitf43a42d53e21e5860217ede634f8eea6d25d3a18 (patch)
treee50882487d6bd172583eb9d2301012d2cb76baf7 /libcxx/include
parentacfd55b039f8bc29b34dd9df89c71f7183793269 (diff)
downloadbcm5719-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/memory1
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;};
OpenPOWER on IntegriCloud