Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Colls: Move description & name for colls to std::string
[simgrid.git] / src / smpi / include / smpi_coll.hpp
index 9dfb2e3..a88a16b 100644 (file)
@@ -1,5 +1,5 @@
 /*High level handling of collective algorithms*/
-/* Copyright (c) 2009-2010, 2012-2018. The SimGrid Team.
+/* Copyright (c) 2009-2018. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -83,8 +83,8 @@ namespace simgrid{
 namespace smpi{
 
 struct s_mpi_coll_description_t {
-  const char *name;
-  const char *description;
+  std::string name;
+  std::string description;
   void *coll;
 };