mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
ab758510b2
commit
b24a983561
|
@ -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.
|
||||
|
|
|
@ -213,9 +213,7 @@ _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)
|
||||
|
|
Loading…
Reference in New Issue