Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / smpi / smpi_group.hpp
index cdc7362..f7c2572 100644 (file)
@@ -14,10 +14,10 @@ namespace smpi{
 
 class Group {
   private:
-    int m_size;
-    int *m_rank_to_index_map;
-    xbt_dict_t m_index_to_rank_map;
-    int m_refcount;
+    int size_;
+    int *rank_to_index_map_;
+    xbt_dict_t index_to_rank_map_;
+    int refcount_;
   public:
 
     Group();