X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3203afd846219ef8b41cadda945ea0a98103c46f..b58b0ba2f6b92efa234677e19dd998346113504d:/src/xbt/exception.cpp diff --git a/src/xbt/exception.cpp b/src/xbt/exception.cpp index e8048f88f0..e4d1755bef 100644 --- a/src/xbt/exception.cpp +++ b/src/xbt/exception.cpp @@ -35,7 +35,7 @@ void log_exception(e_xbt_log_priority_t prio, const char* context, std::exceptio try { std::string name = boost::core::demangle(typeid(exception).name()); - auto* with_context = dynamic_cast(&exception); + const auto* with_context = dynamic_cast(&exception); if (with_context != nullptr) { XBT_LOG(prio, "%s %s by %s/%ld: %s", context, name.c_str(), with_context->throw_point().procname_.c_str(), with_context->throw_point().pid_, exception.what()); @@ -54,7 +54,7 @@ void log_exception(e_xbt_log_priority_t prio, const char* context, std::exceptio try { // Do we have a nested exception? - auto* with_nested = dynamic_cast(&exception); + const auto* with_nested = dynamic_cast(&exception); if (with_nested != nullptr && with_nested->nested_ptr() != nullptr) with_nested->rethrow_nested(); } catch (const std::exception& nested_exception) {