Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Unused exception parameter 'e'.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 31 May 2021 07:44:22 +0000 (09:44 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 31 May 2021 07:44:22 +0000 (09:44 +0200)
src/xbt/xbt_replay.cpp

index 0a1e5ac..9635ca8 100644 (file)
@@ -102,7 +102,7 @@ static void handle_action(ReplayAction& action)
   action_fun function = action_funs.at(action.at(1));
   try {
     function(action);
-  } catch (const Exception& e) {
+  } catch (const Exception&) {
     action.clear();
     throw;
   }