Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
obey our coding standards, and snake_case some parts of MC
[simgrid.git] / src / mc / Transition.hpp
index d956ac1..39f8a83 100644 (file)
@@ -20,7 +20,7 @@ namespace mc {
  */
 class Transition {
 public:
-  int pid = 0;
+  int pid_ = 0;
 
   /* Which transition was executed for this simcall
    *
@@ -30,7 +30,7 @@ public:
    *
    * * random can produce different values.
    */
-  int argument = 0;
+  int argument_ = 0;
 };
 
 }