summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
Diffstat (limited to 'src/script')
-rw-r--r--src/script/squirrel_helper.hpp8
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;
/**