From 7fecf73492a2a1c6e39e948bad13e284d225c81e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 1 May 2016 21:41:30 +0200 Subject: [PATCH] Math: minor cleanup. --- src/Magnum/Math/BoolVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;