From 06392269e49da967501083ab3213f4a8723e15a7 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Fri, 11 Feb 2022 12:28:40 +0100 Subject: [PATCH] Fixes annoying unused parameter --- add_on/scripthandle/scripthandle.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/add_on/scripthandle/scripthandle.cpp b/add_on/scripthandle/scripthandle.cpp index df6cbbe..29e9d5b 100644 --- a/add_on/scripthandle/scripthandle.cpp +++ b/add_on/scripthandle/scripthandle.cpp @@ -224,6 +224,7 @@ void CScriptHandle::EnumReferences(asIScriptEngine *inEngine) void CScriptHandle::ReleaseReferences(asIScriptEngine *inEngine) { + (void)inEngine; // Simply clear the content to release the references Set(0, 0); }