X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f5792a3bf76ce15a573ae5e9c63097595ae5f2bd..68fddbaeb8d7a332bec9eb09ef0e7e548ac1850c:/src/xbt/xbt_replay.cpp diff --git a/src/xbt/xbt_replay.cpp b/src/xbt/xbt_replay.cpp index 4c2fec8c09..beee5cdbbe 100644 --- a/src/xbt/xbt_replay.cpp +++ b/src/xbt/xbt_replay.cpp @@ -105,7 +105,7 @@ static void handle_action(ReplayAction* action) char** c_action = new char*[action->size() + 1]; action_fun function = action_funs.at(action->at(1)); int i = 0; - for (auto arg : *action) { + for (auto const& arg : *action) { c_action[i] = xbt_strdup(arg.c_str()); i++; }