From: Augustin Degomme Date: Fri, 20 Mar 2020 10:07:22 +0000 (+0100) Subject: fix copypaste issue X-Git-Tag: v3.26~722 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/34e473aabe6f1180559eff2f2743e60105055116 fix copypaste issue --- diff --git a/src/mc/AddressSpace.hpp b/src/mc/AddressSpace.hpp index 6a5392c902..c67ecb8914 100644 --- a/src/mc/AddressSpace.hpp +++ b/src/mc/AddressSpace.hpp @@ -57,7 +57,7 @@ public: } ReadOptions& operator^=(ReadOptions const& that) { - value_ &= that.value_; + value_ ^= that.value_; return *this; }