X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e709643ef0c5b61c6c878016c418bffa2b1b20cd..6db44d40a0cb94c4ad8fac6861e349057bf932e7:/src/mc/mc_record.hpp diff --git a/src/mc/mc_record.hpp b/src/mc/mc_record.hpp index 9bf1399606..39d960e40b 100644 --- a/src/mc/mc_record.hpp +++ b/src/mc/mc_record.hpp @@ -7,7 +7,7 @@ * * This file contains the MC replay/record functionality. * The recorded path is written in the log output and can be replayed with MC disabled - * (even with an non-MC build) using `--cfg=model-check/replay:$replayPath`. + * (even with a non-MC build) using `--cfg=model-check/replay:$replayPath`. * * The same version of Simgrid should be used and the same arguments should be * passed to the application (without the MC specific arguments). @@ -25,9 +25,9 @@ namespace simgrid { namespace mc { -typedef std::vector RecordTrace; +using RecordTrace = std::vector; -/** Convert a string representation of the path into a array of `simgrid::mc::Transition` +/** Convert a string representation of the path into an array of `simgrid::mc::Transition` */ XBT_PRIVATE RecordTrace parseRecordTrace(const char* data); XBT_PRIVATE std::string traceToString(simgrid::mc::RecordTrace const& trace);