From 1dc2c9cc1f8f4e7c7a62f3ae29918b46198333fa Mon Sep 17 00:00:00 2001 From: Prcuvu Date: Tue, 1 Oct 2019 18:09:22 +0800 Subject: [PATCH] Fix indentation [ci skip] --- src/LuaManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LuaManager.cpp b/src/LuaManager.cpp index 868d9dfdf5..691aa7ef57 100644 --- a/src/LuaManager.cpp +++ b/src/LuaManager.cpp @@ -84,7 +84,7 @@ namespace LuaHelpers template<> void Push( lua_State *L, const double &Object ) { lua_pushnumber( L, Object ); } template<> void Push( lua_State *L, const int &Object ) { lua_pushinteger( L, Object ); } template<> void Push( lua_State *L, const unsigned int &Object ) { lua_pushnumber( L, double(Object) ); } - template<> void Push( lua_State *L, const unsigned long long &Object ) { lua_pushnumber( L, double(Object) ); } + template<> void Push( lua_State *L, const unsigned long long &Object ) { lua_pushnumber( L, double(Object) ); } template<> void Push( lua_State *L, const RString &Object ) { lua_pushlstring( L, Object.data(), Object.size() ); } template<> void Push( lua_State *L, std::string const& object ) { lua_pushlstring( L, object.data(), object.size() ); }