X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..149c63f36e15b8500b1e826bda5138318ff7ba2b:/examples/smpi/replay/replay.cpp diff --git a/examples/smpi/replay/replay.cpp b/examples/smpi/replay/replay.cpp index 2364b74321..50b515e31f 100644 --- a/examples/smpi/replay/replay.cpp +++ b/examples/smpi/replay/replay.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -14,7 +14,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example") /* This shows how to extend the trace format by adding a new kind of events. This function is registered through xbt_replay_action_register() below. */ -static void action_blah(simgrid::xbt::ReplayAction& args) +static void action_blah(const simgrid::xbt::ReplayAction& /*args*/) { /* Add your answer to the blah event here. args is a strings array containing the blank-separated parameters found in the trace for this event instance. */ @@ -23,7 +23,7 @@ static void action_blah(simgrid::xbt::ReplayAction& args) action_fun previous_send; static void overriding_send(simgrid::xbt::ReplayAction& args) { - previous_send(args); // Just call the overriden symbol. That's a toy example. + previous_send(args); // Just call the overridden symbol. That's a toy example. } int main(int argc, char* argv[])