Fix linux warnings Implement #72

This commit is contained in:
Rochet2
2014-06-25 23:29:07 +03:00
committed by Foereaper
parent aa78932fd1
commit 580b3f7a25
17 changed files with 277 additions and 62 deletions

View File

@@ -201,13 +201,13 @@ namespace LuaGroup
return 1;
}
int Disband(lua_State* L, Group* group)
int Disband(lua_State* /*L*/, Group* group)
{
group->Disband();
return 0;
}
int ConvertToRaid(lua_State* L, Group* group)
int ConvertToRaid(lua_State* /*L*/, Group* group)
{
group->ConvertToRaid();
return 0;