X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/26d1147ec30ab349fa361267937d935750622039..640e6f6494f5e1151f6436aea0e0c515da2c144b:/src/s4u/s4u_Io.cpp diff --git a/src/s4u/s4u_Io.cpp b/src/s4u/s4u_Io.cpp index 394580bd44..7945a3a3c8 100644 --- a/src/s4u/s4u_Io.cpp +++ b/src/s4u/s4u_Io.cpp @@ -63,13 +63,13 @@ bool Io::test() /** @brief Returns the amount of flops that remain to be done */ double Io::get_remaining() { - return simgrid::simix::simcall( + return simix::simcall( [this]() { return boost::static_pointer_cast(pimpl_)->get_remaining(); }); } sg_size_t Io::get_performed_ioops() { - return simgrid::simix::simcall( + return simix::simcall( [this]() { return boost::static_pointer_cast(pimpl_)->get_performed_ioops(); }); }