* include/std/typeindex (type_index::name()): LWG 2144: Add noexcept.

From-SVN: r199070
This commit is contained in:
Jonathan Wakely 2013-05-18 23:11:42 +00:00 committed by Jonathan Wakely
parent 05a4261b10
commit f92126ba39
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-05-18 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/std/typeindex (type_index::name()): LWG 2144: Add noexcept.
2013-05-18 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/bits/unique_ptr.h (make_unique): Declare inline.

View File

@ -83,7 +83,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
{ return _M_target->hash_code(); }
const char*
name() const
name() const noexcept
{ return _M_target->name(); }
private: