Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more use of get_unique_data
[simgrid.git] / examples / cpp / io-file-system / s4u-io-file-system.cpp
index ef57282..40e0048 100644 (file)
@@ -58,9 +58,8 @@ public:
 
     // Test attaching some user data to the file
     file->set_data(new std::string("777"));
-    const auto* file_data = file->get_data<std::string>();
+    auto file_data = file->get_unique_data<std::string>();
     XBT_INFO("User data attached to the file: %s", file_data->c_str());
-    delete file_data;
 
     // Close the file
     file->close();