aboutsummaryrefslogtreecommitdiff
path: root/cutl/re.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-15 15:00:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-15 15:00:04 +0200
commite8a09d9833d67a40c43e4de1d578551cc9020cb7 (patch)
tree0d4f2f7208dc432aad5ad3d4f132c80e0d63e534 /cutl/re.hxx
parent44fde85b2496750b78939247d1d19a67c5b3dc71 (diff)
Various MSVC and C++11 fixes
Diffstat (limited to 'cutl/re.hxx')
-rw-r--r--cutl/re.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/cutl/re.hxx b/cutl/re.hxx
index 176bd9d..62b65e0 100644
--- a/cutl/re.hxx
+++ b/cutl/re.hxx
@@ -20,6 +20,7 @@ namespace cutl
struct LIBCUTL_EXPORT format_base: exception
{
format_base (std::string const& d): description_ (d) {}
+ ~format_base () LIBCUTL_NOTHROW_NOEXCEPT {}
std::string const&
description () const
@@ -39,6 +40,7 @@ namespace cutl
{
basic_format (std::basic_string<C> const& e, std::string const& d)
: format_base (d), regex_ (e) {}
+ ~basic_format () LIBCUTL_NOTHROW_NOEXCEPT {}
std::basic_string<C> const&
regex () const