Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
yet another attempt to handle MPI special values in fortran
[simgrid.git] / src / smpi / mpi / smpi_info.cpp
index fb9cef8..7b3efad 100644 (file)
@@ -9,11 +9,8 @@
 namespace simgrid {
 namespace smpi {
 
-Info::Info(Info* info) : map_(info->map_)
+void Info::ref()
 {
-}
-
-void Info::ref(){
   refcount_++;
 }
 
@@ -24,10 +21,6 @@ void Info::unref(Info* info){
   }
 }
 
-void Info::set(char *key, char *value){
-  map_[key] = value;
-}
-
 int Info::get(char *key, int valuelen, char *value, int *flag){
   *flag=false;
   auto val = map_.find(key);