aboutsummaryrefslogtreecommitdiff
path: root/cutl/exception.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-14 15:24:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-14 15:24:14 +0200
commit44fde85b2496750b78939247d1d19a67c5b3dc71 (patch)
treecb7f87c14037727ddc89bb7499457b5e3207ad98 /cutl/exception.cxx
parent7945c1771bbb57125b3e3343fa84bfc314e0f4d4 (diff)
C++11-compatibility fixes and improvements
Diffstat (limited to 'cutl/exception.cxx')
-rw-r--r--cutl/exception.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cutl/exception.cxx b/cutl/exception.cxx
index 6f69aa7..339c500 100644
--- a/cutl/exception.cxx
+++ b/cutl/exception.cxx
@@ -9,7 +9,7 @@
namespace cutl
{
char const* exception::
- what () const throw ()
+ what () const LIBCUTL_NOTHROW_NOEXCEPT
{
return typeid (*this).name ();
}