]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/mpi/smpi_errhandler.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make global variables "const".
[simgrid.git] / src / smpi / mpi / smpi_errhandler.cpp
index c62d8449d5e3b48526de4d5f4221ffd832cfd62e..d784da58dcd1b93d9ef4db31df7f6d609e7e7d71 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-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 @@
 simgrid::smpi::Errhandler smpi_MPI_ERRORS_RETURN;
 simgrid::smpi::Errhandler smpi_MPI_ERRORS_ARE_FATAL;
 
-namespace simgrid{
-namespace smpi{
+namespace simgrid::smpi {
 
 MPI_Errhandler Errhandler::f2c(int id) {
   if (F2C::lookup() != nullptr && id >= 0) {
@@ -47,11 +46,9 @@ void Errhandler::unref(Errhandler* errhandler){
     return;
   errhandler->refcount_--;
   if(errhandler->refcount_==0){
-    F2C::free_f(errhandler->c2f());
+    F2C::free_f(errhandler->f2c_id());
     delete errhandler;
   }
 }
 
-}
-
-}
+} // namespace simgrid::smpi