Changed to using to_string as dispatch instead of print and puts

This commit is contained in:
Jonathan Turner
2009-07-02 17:45:58 +00:00
parent 60b814f687
commit 6ddef8f918
2 changed files with 9 additions and 11 deletions

View File

@@ -472,8 +472,8 @@ namespace dispatchkit
add_oper_assign<std::string>(s);
register_function(s, &to_string<const std::string &>, "to_string");
register_function(s, &to_string<bool>, "to_string");
register_function(s, &to_string<const std::string &>, "internal_to_string");
register_function(s, &to_string<bool>, "internal_to_string");
register_function(s, &unknown_assign, "=");
bootstrap_pod_type<double>(s, "double");