X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a78d7e5fd907f72b2614175ba571d87949e327e2..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/src/smpi/include/smpi_request.hpp diff --git a/src/smpi/include/smpi_request.hpp b/src/smpi/include/smpi_request.hpp index a91b6ab948..a8b26a6466 100644 --- a/src/smpi/include/smpi_request.hpp +++ b/src/smpi/include/smpi_request.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -11,8 +11,7 @@ #include -namespace simgrid{ -namespace smpi{ +namespace simgrid::smpi { struct smpi_mpi_generalized_request_funcs_t { MPI_Grequest_query_function *query_fn; @@ -68,7 +67,7 @@ public: int tag() const { return tag_; } int flags() const { return flags_; } bool detached() const { return detached_; } - std::string name() const override { return std::string("MPI_Request"); } + std::string name() const override { return "MPI_Request"; } MPI_Datatype type() const { return type_; } void print_request(const char* message) const; void start(); @@ -129,8 +128,6 @@ public: static Request* f2c(int); }; - -} -} +} // namespace simgrid::smpi #endif