From: Gabriel Corona Date: Tue, 5 Apr 2016 12:12:38 +0000 (+0200) Subject: [mc] Don't copy or move states (yet) X-Git-Tag: v3_13~169 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ddc7703ca9a78d9a3cff396af9635206bf57ee84 [mc] Don't copy or move states (yet) --- diff --git a/src/mc/mc_state.h b/src/mc/mc_state.h index 90706daa4b..a744151a60 100644 --- a/src/mc/mc_state.h +++ b/src/mc/mc_state.h @@ -74,6 +74,11 @@ struct XBT_PRIVATE State { State(); ~State(); + State(State const&) = delete; + State operator=(State const&) = delete; + State(State const&&) = delete; + State operator=(State const&&) = delete; + std::size_t interleaveSize() const; };