Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/libc++/dist/libcxx/include Provide consistent e...



details:   https://anonhg.NetBSD.org/src/rev/e25792ee356c
branches:  trunk
changeset: 320756:e25792ee356c
user:      joerg <joerg%NetBSD.org@localhost>
date:      Tue Jul 17 18:57:25 2018 +0000

description:
Provide consistent exception specifiers.

diffstat:

 external/bsd/libc++/dist/libcxx/include/__hash_table |  2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diffs (19 lines):

diff -r d73cc57faa8f -r e25792ee356c external/bsd/libc++/dist/libcxx/include/__hash_table
--- a/external/bsd/libc++/dist/libcxx/include/__hash_table      Tue Jul 17 18:56:58 2018 +0000
+++ b/external/bsd/libc++/dist/libcxx/include/__hash_table      Tue Jul 17 18:57:25 2018 +0000
@@ -1135,6 +1135,7 @@
     _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<hasher>::value &&
         is_nothrow_default_constructible<key_equal>::value)
     : __p2_(0),
@@ -1203,6 +1204,7 @@
         _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<hasher>::value &&
             is_nothrow_move_constructible<key_equal>::value)
     : __bucket_list_(_VSTD::move(__u.__bucket_list_)),



Home | Main Index | Thread Index | Old Index