diff --git a/src/Set.h b/src/Set.h index 1645b06b2..febb05edc 100644 --- a/src/Set.h +++ b/src/Set.h @@ -87,7 +87,7 @@ template class Set { } /** @brief Intersect two sets and assign */ - inline Set& operator&=(Set other) const { + inline Set& operator&=(Set other) { value &= other.value; return *this; }