aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/adjoint.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-19 11:06:40 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-19 11:06:40 +0000
commita6d387a359354c8f75f9a0dfe623600e6a303c8c (patch)
tree1244e7a577402f86233b5d2e72e50562a3eb3c13 /test/adjoint.cpp
parent9466e5f94edbff1219cd48639fd0ef80e11b85a9 (diff)
Various compilation fixes for MSVC 9. All tests compile but some
still fail at runtime in ei_aligned_free() (even without vectorization).
Diffstat (limited to 'test/adjoint.cpp')
-rw-r--r--test/adjoint.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/adjoint.cpp b/test/adjoint.cpp
index 3b779f14e..50ebb70dc 100644
--- a/test/adjoint.cpp
+++ b/test/adjoint.cpp
@@ -72,6 +72,7 @@ template<typename MatrixType> void adjoint(const MatrixType& m)
VERIFY_IS_MUCH_SMALLER_THAN(vzero.norm(), static_cast<RealScalar>(1));
// check compatibility of dot and adjoint
+ // FIXME this line failed with MSVC and complex<double> in the ei_aligned_free()
VERIFY_IS_APPROX(v1.dot(square * v2), (square.adjoint() * v1).dot(v2));
// like in testBasicStuff, test operator() to check const-qualification