X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/65beede857f93e33c96e544f76b93793c973dc10..a63a8597fc53411fbb6a812c52f21d4ceede74ee:/src/xbt/exception.cpp diff --git a/src/xbt/exception.cpp b/src/xbt/exception.cpp index 82b64eeabf..6d9272f0bc 100644 --- a/src/xbt/exception.cpp +++ b/src/xbt/exception.cpp @@ -105,6 +105,7 @@ void log_exception(e_xbt_log_priority_t prio, const char* context, std::exceptio } catch (...) { // Don't log exceptions we got when trying to log exception + XBT_LOG(prio, "Ignoring exception caught while while trying to log an exception!"); } } @@ -145,7 +146,7 @@ static void handler() std::abort(); } - catch (simgrid::ForcefulKillException const& e) { + catch (const simgrid::ForcefulKillException&) { XBT_ERROR("Received a ForcefulKillException at the top-level exception handler. Maybe a Java->C++ call that is not " "protected " "in a try/catch?");