diff options
-rw-r--r-- | src/base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base.cpp b/src/base.cpp index 81aea40e2..9d03b6afb 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -107,7 +107,7 @@ BoolSet::BoolSet(char bitmask) this->bits = bitmask; } -bool operator=(BoolSet other) +bool BoolSet::operator=(BoolSet other) { this->bits = other.bits; return true; |