summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)