aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/mixingtypes.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-03-02 08:41:35 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-03-02 08:41:35 -0500
commitbca04bd9836bf7c499dc08619dfd36aa120b1909 (patch)
tree2388e66211ae092074900ed1f3a8a26dccb9b866 /test/mixingtypes.cpp
parenta2d7c239f54190ddb40febb6b4b65d74c261f008 (diff)
fix compilation
Diffstat (limited to 'test/mixingtypes.cpp')
-rw-r--r--test/mixingtypes.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/mixingtypes.cpp b/test/mixingtypes.cpp
index 71c2dcb18..8b8e8302e 100644
--- a/test/mixingtypes.cpp
+++ b/test/mixingtypes.cpp
@@ -78,7 +78,9 @@ template<int SizeAtCompileType> void mixingtypes(int size = SizeAtCompileType)
// check dot product
vf.dot(vf);
+#if 0 // we get other compilation errors here than just static asserts
VERIFY_RAISES_ASSERT(vd.dot(vf));
+#endif
VERIFY_RAISES_ASSERT(vcf.dot(vf)); // yeah eventually we should allow this but i'm too lazy to make that change now in Dot.h
// especially as that might be rewritten as cwise product .sum() which would make that automatic.