Skip to content

Commit 63a4d37

Browse files
author
nitrocaster
committed
Fix conventions.
1 parent c14be74 commit 63a4d37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/xrScriptEngine/Functor.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void functor<void, typename...>::operator()(Args &&...args) const
3131

3232
namespace detail
3333
{
34-
template<typename T>
34+
template <typename T>
3535
struct type_to_string<functor<T>>
3636
{
3737
static void get(lua_State *L)
@@ -44,7 +44,7 @@ struct type_to_string<functor<T>>
4444
};
4545
}
4646

47-
template<typename T>
47+
template <typename T>
4848
struct default_converter<functor<T>> : native_converter_base<functor<T>>
4949
{
5050
static int compute_score(lua_State *luaState, int index)
@@ -61,11 +61,11 @@ struct default_converter<functor<T>> : native_converter_base<functor<T>>
6161
{ value.push(luaState); }
6262
};
6363

64-
template<typename T>
64+
template <typename T>
6565
struct default_converter<const functor<T>> : default_converter<functor<T>>
6666
{};
6767

68-
template<typename T>
68+
template <typename T>
6969
struct default_converter<const functor<T> &> : default_converter<functor<T>>
7070
{};
7171
}

0 commit comments

Comments
 (0)