X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1b8f849b45ded567cf10c7da022447a775270a0e..954676b700e711f38ec4d286d33d5427d3f4ca46:/src/mc/DwarfExpression.hpp?ds=inline diff --git a/src/mc/DwarfExpression.hpp b/src/mc/DwarfExpression.hpp index 7a64654cfe..946f83cef4 100644 --- a/src/mc/DwarfExpression.hpp +++ b/src/mc/DwarfExpression.hpp @@ -12,8 +12,8 @@ namespace dwarf { class evaluation_error : std::runtime_error { public: - evaluation_error(const char* what) : std::runtime_error(what) {} - ~evaluation_error(); + evaluation_error(const char* what): std::runtime_error(what) {} + ~evaluation_error() noexcept(true); }; struct ExpressionContext { @@ -90,4 +90,4 @@ void execute(simgrid::dwarf::DwarfExpression const& expression, } } -#endif \ No newline at end of file +#endif