Lua: Fix compilation error with some arguments type

Former-commit-id: 954f5ddff3c7fba4fa5975321f2c6a1c89c3d4ad
This commit is contained in:
Lynix
2015-12-07 19:54:45 +01:00
parent f1166b68a9
commit 4ccbaece88
3 changed files with 15 additions and 8 deletions

View File

@@ -133,8 +133,8 @@ namespace Nz
void Remove(int index);
void Replace(int index);
void SetField(const char* name, int index = -2);
void SetField(const String& name, int index = -2);
void SetField(const char* name, int tableIndex = -2);
void SetField(const String& name, int tableIndex = -2);
void SetGlobal(const char* name);
void SetGlobal(const String& name);
void SetMetatable(const char* tname);