Change comment format

This commit is contained in:
Jason Turner 2016-12-06 13:42:58 -07:00
parent cee57f998a
commit f79de06e0b

View File

@ -917,11 +917,9 @@ namespace chaiscript
} }
} }
/** /// Take a vector of functions and a vector of parameters. Attempt to execute
* Take a vector of functions and a vector of parameters. Attempt to execute /// each function against the set of parameters, in order, until a matching
* each function against the set of parameters, in order, until a matching /// function is found or throw dispatch_error if no matching function is found
* function is found or throw dispatch_error if no matching function is found
*/
template<typename Funcs> template<typename Funcs>
Boxed_Value dispatch(const Funcs &funcs, Boxed_Value dispatch(const Funcs &funcs,
const std::vector<Boxed_Value> &plist, const Type_Conversions_State &t_conversions) const std::vector<Boxed_Value> &plist, const Type_Conversions_State &t_conversions)