aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Carlini <paolo.carlini@oracle.com>2011-09-29 17:26:32 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2011-09-29 17:26:32 +0000
commitb24a9835613b24310676865c937f65f9c3c5da43 (patch)
tree88e43530adf93758490c14138a167d81d9a07d87
parentab758510b21e7cbb0d08ba6a6b63bb8f9ee1a121 (diff)
downloadgcc-b24a9835613b24310676865c937f65f9c3c5da43.zip
gcc-b24a9835613b24310676865c937f65f9c3c5da43.tar.gz
gcc-b24a9835613b24310676865c937f65f9c3c5da43.tar.bz2
hashtable.h (_Hashtable<>::_Hashtable(_Hashtable&&)): Remove noexcept from declaration too.
2011-09-29 Paolo Carlini <paolo.carlini@oracle.com> * include/bits/hashtable.h (_Hashtable<>::_Hashtable(_Hashtable&&)): Remove noexcept from declaration too. From-SVN: r179360
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/hashtable.h6
2 files changed, 7 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index a59a0b6..8a15c8c 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2011-09-29 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * include/bits/hashtable.h (_Hashtable<>::_Hashtable(_Hashtable&&)):
+ Remove noexcept from declaration too.
+
2011-09-27 Benjamin Kosnik <bkoz@redhat.com>
* doc/html/*: Regenerate.
diff --git a/libstdc++-v3/include/bits/hashtable.h b/libstdc++-v3/include/bits/hashtable.h
index 5c74066..a125f3e 100644
--- a/libstdc++-v3/include/bits/hashtable.h
+++ b/libstdc++-v3/include/bits/hashtable.h
@@ -213,10 +213,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
_Hashtable(const _Hashtable&);
- _Hashtable(_Hashtable&&)
- noexcept(__and_<is_nothrow_copy_constructible<_Equal>,
- is_nothrow_copy_constructible<_H1>>::value);
-
+ _Hashtable(_Hashtable&&);
+
_Hashtable&
operator=(const _Hashtable& __ht)
{