Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Make Snapshot::ignored_data a std::vector
[simgrid.git] / src / mc / mc_snapshot.cpp
index 8635af9..ce9b138 100644 (file)
@@ -164,13 +164,11 @@ Snapshot::Snapshot() :
   stack_sizes(),
   stacks(nullptr),
   to_ignore(nullptr),
-  hash(0),
-  ignored_data(nullptr),
-  total_fd(0),
-  current_fd(nullptr)
+  hash(0)
 {
 
 }
+
 Snapshot::~Snapshot()
 {
   for (size_t i = 0; i < this->snapshot_regions_count; i++) {
@@ -179,7 +177,6 @@ Snapshot::~Snapshot()
   xbt_free(this->snapshot_regions);
   xbt_dynar_free(&(this->stacks));
   xbt_dynar_free(&(this->to_ignore));
-  xbt_dynar_free(&this->ignored_data);
 }
 
 const void* Snapshot::read_bytes(void* buffer, std::size_t size,