Browse Source

Compile fix for Core::Lua

Pretty amazing how long this went unnoticed.
Cornee Traas 11 years ago
parent
commit
8cb003ffb2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Core/Lua/LuaElementInstancer.cpp

+ 1 - 1
Source/Core/Lua/LuaElementInstancer.cpp

@@ -48,7 +48,7 @@ LuaElementInstancer::LuaElementInstancer(lua_State* L) : ElementInstancer(), ref
     lua_pop(L,1); //pop the ELEMENTINSTANCERFUNCTIONS table
 }
 
-Element* LuaElementInstancer::InstanceElement(Element* ROCKET_UNUSED(parent), const String& tag, const XMLAttributes& ROCKET_UNUSED(attributes))
+Element* LuaElementInstancer::InstanceElement(Element* ROCKET_UNUSED_PARAMETER(parent), const String& tag, const XMLAttributes& ROCKET_UNUSED_PARAMETER(attributes))
 {
     lua_State* L = Interpreter::GetLuaState();
     int top = lua_gettop(L);