diff --git a/src/Magnum/Math/BoolVector.h b/src/Magnum/Math/BoolVector.h index 006dbff80..40cf5e3f4 100644 --- a/src/Magnum/Math/BoolVector.h +++ b/src/Magnum/Math/BoolVector.h @@ -227,7 +227,7 @@ template Corrade::Utility::Debug& operator<<(Corrade::Utility: return debug << Corrade::Utility::Debug::nospace << ")"; } -template inline bool BoolVector::operator==(const BoolVector< size >& other) const { +template inline bool BoolVector::operator==(const BoolVector& other) const { for(std::size_t i = 0; i != size/8; ++i) if(_data[i] != other._data[i]) return false;