From c8f54c23967bfe6cef308ae5cadf3a36d29056da Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Wed, 16 Dec 2015 00:53:04 +0000 Subject: [PATCH] Make noexcept specifications on __hash_table definitions match their declarations. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@255738 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/__hash_table | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/__hash_table b/include/__hash_table index 6ea388bf..cfa763ab 100644 --- a/include/__hash_table +++ b/include/__hash_table @@ -1143,6 +1143,7 @@ __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table() _NOEXCEPT_( is_nothrow_default_constructible<__bucket_list>::value && is_nothrow_default_constructible<__first_node>::value && + is_nothrow_default_constructible<__node_allocator>::value && is_nothrow_default_constructible::value && is_nothrow_default_constructible::value) : __p2_(0), @@ -1211,6 +1212,7 @@ __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(__hash_table&& __u) _NOEXCEPT_( is_nothrow_move_constructible<__bucket_list>::value && is_nothrow_move_constructible<__first_node>::value && + is_nothrow_move_constructible<__node_allocator>::value && is_nothrow_move_constructible::value && is_nothrow_move_constructible::value) : __bucket_list_(_VSTD::move(__u.__bucket_list_)),