From 2a474e9005c26c0cd944ea1daa89c8bad60d6d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 6 Jul 2012 02:20:52 +0200 Subject: [PATCH] Set::operator&= cannot be const. --- src/Set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }