(svn r17963) -Codechange: some documentation style

This commit is contained in:
rubidium
2009-11-03 17:30:08 +00:00
parent b211e0d5f5
commit d79439fb3c
7 changed files with 20 additions and 20 deletions

View File

@@ -147,10 +147,10 @@ namespace SQConvert {
}
/**
* Helper class to recognize the function type (retval type, args) and use the proper specialization
* for SQ callback. The partial specializations for the second arg (Tis_void_retval) are not possible
* on the function. Therefore the class is used instead.
*/
* Helper class to recognize the function type (retval type, args) and use the proper specialization
* for SQ callback. The partial specializations for the second arg (Tis_void_retval) are not possible
* on the function. Therefore the class is used instead.
*/
template <typename Tfunc, bool Tis_void_retval = HasVoidReturnT<Tfunc>::Yes> struct HelperT;
/**