X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..a3928e348b652b4d2c7c7ebf058205dbedac94cf:/src/mc/Transition.hpp diff --git a/src/mc/Transition.hpp b/src/mc/Transition.hpp index d956ac110f..a0a2813b08 100644 --- a/src/mc/Transition.hpp +++ b/src/mc/Transition.hpp @@ -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