diff --git a/include/chaiscript/dispatchkit/bootstrap.hpp b/include/chaiscript/dispatchkit/bootstrap.hpp index 7363c5c..0848ec5 100644 --- a/include/chaiscript/dispatchkit/bootstrap.hpp +++ b/include/chaiscript/dispatchkit/bootstrap.hpp @@ -94,8 +94,8 @@ namespace chaiscript /** - * to_string function for internal use. Uses ostream operator<< - */ + * to_string function for internal use. Uses ostream operator<< + */ template std::string to_string(Input i) { @@ -104,11 +104,10 @@ namespace chaiscript return ss.str(); } - /** - * Internal function for converting from a string to a value - * uses ostream operator >> to perform the conversion - */ + * Internal function for converting from a string to a value + * uses ostream operator >> to perform the conversion + */ template Input parse_string(const std::string &i) { @@ -117,9 +116,8 @@ namespace chaiscript ss >> t; return t; } - - - + + /** * Add all common functions for a POD type. All operators, and * common conversions