Added -Wextra to compile flags

-Wextra does several extra checks during the compiling. Unfortunately one of the extra check is for unused parameters.
Several functions have unused parameters (mostly the WrenVM* vm).
This commit is contained in:
Peter Reijnders
2015-03-17 07:29:09 +01:00
parent b9f034b398
commit 9f32de7047
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1363,7 +1363,7 @@ void wrenReleaseMethod(WrenVM* vm, WrenMethod* method)
}
// Execute [source] in the context of the core module.
WrenInterpretResult static loadIntoCore(WrenVM* vm, const char* source)
static WrenInterpretResult loadIntoCore(WrenVM* vm, const char* source)
{
ObjModule* coreModule = getCoreModule(vm);