From b9a12f8c05aaeba102c5074c21ecaea078db560e Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 21 Jun 2016 12:03:38 +0200 Subject: [PATCH] Remove exception specifications - they are checked at runtime and kill the process if not enforced - they displease sonarqube for that reason --- src/xbt/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xbt/config.cpp b/src/xbt/config.cpp index eaa8450d2f..b2210e3923 100644 --- a/src/xbt/config.cpp +++ b/src/xbt/config.cpp @@ -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; -- 2.20.1