aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_symm.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-28 17:13:13 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-28 17:13:13 +0200
commit264fe82c655a26f3c3ab5057684dbc51cf533056 (patch)
treee634e521e0c146abec629454752efb8119897d04 /test/product_symm.cpp
parent508f06ac0f9cf2509900138adaf23dee3cdc51c4 (diff)
add a debug mechanism to compute the number of intermediate evaluations (only for dynamic size)
Diffstat (limited to 'test/product_symm.cpp')
-rw-r--r--test/product_symm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/product_symm.cpp b/test/product_symm.cpp
index 54bf91fb9..88bac878b 100644
--- a/test/product_symm.cpp
+++ b/test/product_symm.cpp
@@ -38,7 +38,7 @@ template<int OtherSize> struct symm_extra {
template<> struct symm_extra<1> {
template<typename M1, typename M2, typename Scalar>
- static void run(M1& m1, M1& m2, M2& rhs2, M2& rhs22, M2& rhs23, Scalar s1, Scalar s2) {}
+ static void run(M1&, M1&, M2&, M2&, M2&, Scalar, Scalar) {}
};
template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, int othersize = OtherSize)