aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/mixingtypes.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-20 13:27:41 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-20 13:27:41 +0200
commit4375c043ace44973d077bbe7b8ea1fb8ebf419a6 (patch)
treee14c445b21280cacc9a59fbd975e8efb130cfc9e /test/mixingtypes.cpp
parent4c85fa8c734c8d103343c163fe95e9ffdeb9f5aa (diff)
minor compilation fixes for Sun CC and ICC
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 ec8a0f190..d14232bd4 100644
--- a/test/mixingtypes.cpp
+++ b/test/mixingtypes.cpp
@@ -82,7 +82,7 @@ template<int SizeAtCompileType> void mixingtypes(int size = SizeAtCompileType)
void test_mixingtypes()
{
// check that our operator new is indeed called:
- CALL_SUBTEST(mixingtypes<3>());
- CALL_SUBTEST(mixingtypes<4>());
+ CALL_SUBTEST(mixingtypes<3>(3));
+ CALL_SUBTEST(mixingtypes<4>(4));
CALL_SUBTEST(mixingtypes<Dynamic>(20));
}