From f0dedd3171a2eab5674ec37a2e97766cbbb794ab Mon Sep 17 00:00:00 2001 From: schodet Date: Thu, 9 Mar 2006 21:51:00 +0000 Subject: Vive la construction implicite. --- i/marvin/src/tester/test_tester.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'i') 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) -- cgit v1.2.3