From 63a4d373f5a8a9d3c30ad9dd577b1b27ce30e4ae Mon Sep 17 00:00:00 2001 From: nitrocaster Date: Fri, 15 Jan 2016 12:59:12 +0300 Subject: [PATCH] Fix conventions. --- src/xrScriptEngine/Functor.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xrScriptEngine/Functor.hpp b/src/xrScriptEngine/Functor.hpp index 2eb2e81d851..d57075a5588 100644 --- a/src/xrScriptEngine/Functor.hpp +++ b/src/xrScriptEngine/Functor.hpp @@ -31,7 +31,7 @@ void functor::operator()(Args &&...args) const namespace detail { -template +template struct type_to_string> { static void get(lua_State *L) @@ -44,7 +44,7 @@ struct type_to_string> }; } -template +template struct default_converter> : native_converter_base> { static int compute_score(lua_State *luaState, int index) @@ -61,11 +61,11 @@ struct default_converter> : native_converter_base> { value.push(luaState); } }; -template +template struct default_converter> : default_converter> {}; -template +template struct default_converter &> : default_converter> {}; }