From: Gabriel Corona Date: Tue, 3 May 2016 09:54:53 +0000 (+0200) Subject: [config] Mark ~missing_key_error() noexcept X-Git-Tag: v3_14~1280 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/48580b7729ed54c60acc262d86e12fe547b6b2b5 [config] Mark ~missing_key_error() noexcept --- diff --git a/include/xbt/config.hpp b/include/xbt/config.hpp index b5b3e9d7e9..7b2d7a432b 100644 --- a/include/xbt/config.hpp +++ b/include/xbt/config.hpp @@ -30,7 +30,7 @@ public: : std::runtime_error(what) {} explicit missing_key_error(const char* what) : std::runtime_error(what) {} - ~missing_key_error(); + ~missing_key_error() noexcept; }; template inline