Move towards more header only implementation friendly

This commit is contained in:
Jason Turner
2009-06-13 21:55:55 +00:00
parent 1eb0964f4e
commit 4edea184de
9 changed files with 138 additions and 125 deletions

View File

@@ -8,10 +8,8 @@
BOOST_AUTO_TEST_CASE( add_operators )
{
Dispatch_Engine ss;
bootstrap(ss);
Bootstrap::bootstrap(ss);
dump_system(ss);
BOOST_CHECK_EQUAL(Cast_Helper<int>()(dispatch(ss.get_function("+"), Param_List_Builder() << double(5.1) << double(10.3))), 15.4);
}