From: Arnaud Giersch Date: Thu, 11 Jul 2019 15:39:36 +0000 (+0200) Subject: fx X-Git-Tag: v3.24~307 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/10d9db5b4ff140f64b8cbf8150c1f84887e95a8e fx --- diff --git a/src/mc/AddressSpace.hpp b/src/mc/AddressSpace.hpp index 760b06086d..d14040e0f2 100644 --- a/src/mc/AddressSpace.hpp +++ b/src/mc/AddressSpace.hpp @@ -102,8 +102,8 @@ public: * @param address remote source address of the data * @param options */ - virtual const void* read_bytes(void* buffer, std::size_t size, RemotePtr address, - ReadOptions options = ReadOptions::none()) const = 0; + virtual void* read_bytes(void* buffer, std::size_t size, RemotePtr address, + ReadOptions options = ReadOptions::none()) const = 0; /** Read a given data structure from the address space */ template inline void read(T* buffer, RemotePtr ptr) const { this->read_bytes(buffer, sizeof(T), ptr); }