aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_notemporary.cpp
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-02-09 20:52:15 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-02-09 20:52:15 +0100
commitc11df02f0d8fdc546a9de27038d8a9d175936a54 (patch)
tree53d6d8ea2c7d57cf72bcc0041e9565f2293cd1ff /test/product_notemporary.cpp
parent5da3049b80dc8bb2de796d151e3d83844fe21a5e (diff)
Deactivated test which requires variadic macros.
Diffstat (limited to 'test/product_notemporary.cpp')
-rw-r--r--test/product_notemporary.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/product_notemporary.cpp b/test/product_notemporary.cpp
index c637039e7..bb213368e 100644
--- a/test/product_notemporary.cpp
+++ b/test/product_notemporary.cpp
@@ -117,7 +117,8 @@ template<typename MatrixType> void product_notemporary(const MatrixType& m)
VERIFY_EVALUATION_COUNT( Scalar tmp = Scalar(RealScalar(1)) / (m3.transpose() * m3).diagonal().array().abs().sum(), 1 );
// Zero temporaries for ... CoeffBasedProductMode
- VERIFY_EVALUATION_COUNT( m3.col(0).head<5>() * m3.col(0).transpose() + m3.col(0).head<5>() * m3.col(0).transpose(), 0 );
+ // - does not work with GCC because of the <..>, we'ld need variadic macros ...
+ //VERIFY_EVALUATION_COUNT( m3.col(0).head<5>() * m3.col(0).transpose() + m3.col(0).head<5>() * m3.col(0).transpose(), 0 );
}
void test_product_notemporary()