]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/include/smpi_group.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Initialize data members with class initializers, or initialization lists.
[simgrid.git] / src / smpi / include / smpi_group.hpp
index c0fa3fe1f127b0e4e85046b089cc5565f9fcd9f8..e82bedc91c9f05c7ac9d216ed8327757826ef3ed 100644 (file)
@@ -25,6 +25,7 @@ class Group : public F2C{
   std::vector<int> index_to_rank_map_;
 
   int refcount_ = 1; /* refcount_: start > 0 so that this group never gets freed */
+
 public:
   Group() = default;
   explicit Group(int size) : size_(size), rank_to_actor_map_(size, nullptr), index_to_rank_map_(size, MPI_UNDEFINED) {}