From 5d639095ee9fc13db68bf7095d282d2588b0ce83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 17 Sep 2012 14:53:15 +0200 Subject: [PATCH] Removed "wontfix" TODOs. Loop unrolling is better to leave up to the compiler, as it will do it automatically and it doesn't add any maintenance burden. Constexpr addition, multiplication etc. of Vector would be nice, but will that be really useful? Maybe once if at all? --- src/Math/Matrix.h | 1 - src/Math/Vector.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Math/Matrix.h b/src/Math/Matrix.h index 3e4da4b59..4f9d71907 100644 --- a/src/Math/Matrix.h +++ b/src/Math/Matrix.h @@ -37,7 +37,6 @@ namespace Implementation { See @ref matrix-vector for brief introduction. @configurationvalueref{Magnum::Math::Matrix} -@todo @c PERFORMANCE - loop unrolling for Matrix<3, T> and Matrix<4, T> */ template class Matrix: public RectangularMatrix { public: diff --git a/src/Math/Vector.h b/src/Math/Vector.h index b3ec031a2..27d0c587a 100644 --- a/src/Math/Vector.h +++ b/src/Math/Vector.h @@ -41,7 +41,6 @@ namespace Implementation { See @ref matrix-vector for brief introduction. @configurationvalueref{Magnum::Math::Vector} -@todo Constexprize all for loops */ template class Vector: public RectangularMatrix<1, s, T> { public: