X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bca02117715fbb22f82ec815bcd6441bffb7a3b5..e167326c1369032305b7eb87e166b12d6690df64:/include/xbt/config.hpp diff --git a/include/xbt/config.hpp b/include/xbt/config.hpp index c9d4df5204..8200bf06c6 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() noexcept; + ~missing_key_error() override; }; template inline @@ -104,7 +104,6 @@ void alias(std::initializer_list names) template void bindFlag(T& value, const char* name, const char* description) { - using namespace std; declareFlag(name, description, value, [&value](T const& val) { value = val; });