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() ); }