X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f23b0fb864cb60978c1fcfd48d50f62dd054fe31..d954f6b7bcf8a03a4cd383ea8684ef63c7b86e5f:/src/mc/Transition.hpp diff --git a/src/mc/Transition.hpp b/src/mc/Transition.hpp index d8566a2221..7c2e93f473 100644 --- a/src/mc/Transition.hpp +++ b/src/mc/Transition.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2018. The SimGrid Team. +/* Copyright (c) 2015-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -20,7 +20,7 @@ namespace mc { */ class Transition { public: - int pid = 0; + int pid_ = 0; /* Which transition was executed for this simcall * @@ -30,10 +30,10 @@ public: * * * random can produce different values. */ - int argument = 0; + int argument_ = 0; }; -} -} +} // namespace mc +} // namespace simgrid #endif