Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Stop copying transitions around since that would shorten the virtual methods
[simgrid.git] / src / mc / checker / SafetyChecker.cpp
index 5eff438..8fd5f95 100644 (file)
@@ -52,7 +52,7 @@ RecordTrace SafetyChecker::get_record_trace() // override
 {
   RecordTrace res;
   for (auto const& state : stack_)
-    res.push_back(*state->get_transition());
+    res.push_back(state->get_transition());
   return res;
 }