Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix copypaste issue
authorAugustin Degomme <adegomme@gmail.com>
Fri, 20 Mar 2020 10:07:22 +0000 (11:07 +0100)
committerAugustin Degomme <adegomme@gmail.com>
Fri, 20 Mar 2020 10:07:22 +0000 (11:07 +0100)
src/mc/AddressSpace.hpp

index 6a5392c..c67ecb8 100644 (file)
@@ -57,7 +57,7 @@ public:
   }
   ReadOptions& operator^=(ReadOptions const& that)
   {
-    value_ &= that.value_;
+    value_ ^= that.value_;
     return *this;
   }