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:
+1
-1
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user