Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Storage-kill: use right version number
[simgrid.git] / src / surf / xml / surfxml_sax_cb.cpp
index 42878c3..1c89668 100644 (file)
@@ -143,26 +143,30 @@ FILE *surf_file_to_parse = nullptr;
 /* Stuff relative to storage */
 void STag_surfxml_storage()
 {
-  XBT_DEBUG("STag_surfxml_storage");
-  property_sets.push_back(new std::unordered_map<std::string, std::string>());
+  xbt_die("<storage> tag was removed in SimGrid v3.27. Please stop using it now.");
 }
 
 void ETag_surfxml_storage()
 {
+  /* Won't happen since <storage> is now removed since v3.27. */
 }
 void STag_surfxml_storage___type()
 {
+  xbt_die("<storage_type> tag was removed in SimGrid v3.27. Please stop using it now.");
 }
 void ETag_surfxml_storage___type()
 {
+  /* Won't happen since <storage_type> is now removed since v3.27. */
 }
 
 void STag_surfxml_mount()
 {
+  xbt_die("<mount> tag was removed in SimGrid v3.27. Please stop using it now.");
 }
 
 void ETag_surfxml_mount()
 {
+  /* Won't happen since <mount> is now removed since v3.27. */
 }
 
 void STag_surfxml_include()