X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e1a5484101efbff9c8d982a0c4650f7953ee7e2f..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/src/smpi/include/smpi_group.hpp diff --git a/src/smpi/include/smpi_group.hpp b/src/smpi/include/smpi_group.hpp index 322cb6b97b..a3ba4e4321 100644 --- a/src/smpi/include/smpi_group.hpp +++ b/src/smpi/include/smpi_group.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2021. The SimGrid Team. +/* Copyright (c) 2010-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -12,8 +12,7 @@ #include #include -namespace simgrid{ -namespace smpi{ +namespace simgrid::smpi { class Group : public F2C{ /* This is actually a map from int to aid_t. We could use std::map here, but looking up a value there costs @@ -35,7 +34,7 @@ public: void set_mapping(aid_t pid, int rank); int rank(aid_t pid) const; aid_t actor(int rank) const; - std::string name() const override {return std::string("MPI_Group");} + std::string name() const override { return "MPI_Group"; } void ref(); static void unref(MPI_Group group); int size() const { return static_cast(rank_to_pid_map_.size()); } @@ -50,7 +49,6 @@ public: static Group* f2c(int id); }; -} -} +} // namespace simgrid::smpi #endif