From e8a09d9833d67a40c43e4de1d578551cc9020cb7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 15 Nov 2016 15:00:04 +0200 Subject: Various MSVC and C++11 fixes --- cutl/re.hxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cutl/re.hxx') 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 const& e, std::string const& d) : format_base (d), regex_ (e) {} + ~basic_format () LIBCUTL_NOTHROW_NOEXCEPT {} std::basic_string const& regex () const -- cgit v1.1