Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[config] Mark ~missing_key_error() noexcept
authorGabriel Corona <gabriel.corona@loria.fr>
Tue, 3 May 2016 09:54:53 +0000 (11:54 +0200)
committerGabriel Corona <gabriel.corona@loria.fr>
Tue, 3 May 2016 10:06:00 +0000 (12:06 +0200)
include/xbt/config.hpp

index b5b3e9d..7b2d7a4 100644 (file)
@@ -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<class T> inline