summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschodet2006-03-09 21:51:00 +0000
committerschodet2006-03-09 21:51:00 +0000
commitf0dedd3171a2eab5674ec37a2e97766cbbb794ab (patch)
treef8e3e042901c8ad5a1570d60bf367908a2a72740
parent3be1cb1479ecfaba4d39117d09b39e0e1e17402f (diff)
Vive la construction implicite.
-rw-r--r--i/marvin/src/tester/test_tester.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/i/marvin/src/tester/test_tester.cc b/i/marvin/src/tester/test_tester.cc
index 285093f..57973f6 100644
--- a/i/marvin/src/tester/test_tester.cc
+++ b/i/marvin/src/tester/test_tester.cc
@@ -80,11 +80,11 @@ class TestTester
t.add ("d", Tester::memFunc (*this, &TestTester::funcD));
t.add ("e", Tester::memFunc (*this, &TestTester::funcE));
// Make argument lists.
- a[1].push_back (any (71117));
- a[2].push_back (any (std::string ("robert")));
- a[3].push_back (any (42));
- a[3].push_back (any (std::string ("merguez")));
- a[3].push_back (any (51.1664));
+ a[1].push_back (71117);
+ a[2].push_back (std::string ("robert"));
+ a[3].push_back (42);
+ a[3].push_back (std::string ("merguez"));
+ a[3].push_back (51.1664);
// Call all those wonderful functions.
call ("unknown", a[0]);
for (unsigned int i = 0; i < sizeof (a) / sizeof (a[0]); ++i)