diff options
author | rubidium <rubidium@openttd.org> | 2009-11-03 17:30:08 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-03 17:30:08 +0000 |
commit | d79439fb3c7798c2ec993acc9cfb5602b9d6a82c (patch) | |
tree | 807690f133385b8ba647eeea77bef2c128edd3bc /src/script | |
parent | b211e0d5f5a402665ed5178397e996deb12b0f85 (diff) | |
download | openttd-d79439fb3c7798c2ec993acc9cfb5602b9d6a82c.tar.xz |
(svn r17963) -Codechange: some documentation style
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/squirrel_helper.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script/squirrel_helper.hpp b/src/script/squirrel_helper.hpp index 225f17dd1..61b8f1a18 100644 --- a/src/script/squirrel_helper.hpp +++ b/src/script/squirrel_helper.hpp @@ -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; /** |