File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ void functor<void, typename...>::operator()(Args &&...args) const
31
31
32
32
namespace detail
33
33
{
34
- template <typename T>
34
+ template <typename T>
35
35
struct type_to_string <functor<T>>
36
36
{
37
37
static void get (lua_State *L)
@@ -44,7 +44,7 @@ struct type_to_string<functor<T>>
44
44
};
45
45
}
46
46
47
- template <typename T>
47
+ template <typename T>
48
48
struct default_converter <functor<T>> : native_converter_base<functor<T>>
49
49
{
50
50
static int compute_score (lua_State *luaState, int index)
@@ -61,11 +61,11 @@ struct default_converter<functor<T>> : native_converter_base<functor<T>>
61
61
{ value.push (luaState); }
62
62
};
63
63
64
- template <typename T>
64
+ template <typename T>
65
65
struct default_converter <const functor<T>> : default_converter<functor<T>>
66
66
{};
67
67
68
- template <typename T>
68
+ template <typename T>
69
69
struct default_converter <const functor<T> &> : default_converter<functor<T>>
70
70
{};
71
71
}
You can’t perform that action at this time.
0 commit comments