Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[config] Fix inconsistent noexcept in ~missing_key_error()
authorGabriel Corona <gabriel.corona@loria.fr>
Tue, 3 May 2016 12:22:11 +0000 (14:22 +0200)
committerGabriel Corona <gabriel.corona@loria.fr>
Tue, 3 May 2016 12:22:11 +0000 (14:22 +0200)
src/xbt/config.cpp

index b705a39..af92672 100644 (file)
@@ -31,7 +31,7 @@ XBT_EXPORT_NO_IMPORT(xbt_cfg_t) simgrid_config = NULL;
 namespace simgrid {
 namespace config {
 
-missing_key_error::~missing_key_error() {}
+missing_key_error::~missing_key_error() noexcept {}
 
 class Config;