Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove exception specifications
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 21 Jun 2016 10:03:38 +0000 (12:03 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 21 Jun 2016 10:09:44 +0000 (12:09 +0200)
- they are checked at runtime and kill the process if not enforced
- they displease sonarqube for that reason

src/xbt/config.cpp

index eaa8450..b2210e3 100644 (file)
@@ -33,7 +33,7 @@ XBT_EXPORT_NO_IMPORT(xbt_cfg_t) simgrid_config = nullptr;
 namespace simgrid {
 namespace config {
 
-missing_key_error::~missing_key_error() noexcept {}
+missing_key_error::~missing_key_error() {}
 
 class Config;