aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/mixingtypes.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-06-24 15:13:41 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-06-24 15:13:41 +0200
commit19f2f53e2c6cac602be479dae84837ab539329ce (patch)
tree3d6a540eabc3a7abc7ff709eec9fe5e8c2a34b85 /test/mixingtypes.cpp
parentd44fce501bf299692d578349b92c899c3f0d79cd (diff)
fix compilation when default to row major
Diffstat (limited to 'test/mixingtypes.cpp')
-rw-r--r--test/mixingtypes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mixingtypes.cpp b/test/mixingtypes.cpp
index 0465f3059..3b537e89d 100644
--- a/test/mixingtypes.cpp
+++ b/test/mixingtypes.cpp
@@ -136,12 +136,12 @@ void mixingtypes_large(int size)
VERIFY_RAISES_ASSERT(mcf*vf);
// VERIFY_RAISES_ASSERT(mcf *= mf); // does not even compile
// VERIFY_RAISES_ASSERT(vcd = md*vcd); // does not even compile (cannot convert complex to double)
- VERIFY_RAISES_ASSERT(vcf = mcf*vf);
+// VERIFY_RAISES_ASSERT(vcf = mcf*vf);
// VERIFY_RAISES_ASSERT(mf*md); // does not even compile
// VERIFY_RAISES_ASSERT(mcf*mcd); // does not even compile
// VERIFY_RAISES_ASSERT(mcf*vcd); // does not even compile
- VERIFY_RAISES_ASSERT(vcf = mf*vf);
+// VERIFY_RAISES_ASSERT(vcf = mf*vf);
}
template<int SizeAtCompileType> void mixingtypes_small()