diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2024-03-04 00:12:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 01:12:05 +0100 |
commit | 85a2fb9c56c1942958c09c8aeafd14ddefb6e0c3 (patch) | |
tree | 146142afc5d0e9272efbdca08108e4674a32f764 /primedev/scripts/client/scriptserverbrowser.cpp | |
parent | 4b0726d97788edff5d83476cb52057f409d623af (diff) | |
download | NorthstarLauncher-85a2fb9c56c1942958c09c8aeafd14ddefb6e0c3.tar.gz NorthstarLauncher-85a2fb9c56c1942958c09c8aeafd14ddefb6e0c3.zip |
Address C4100 compiler warnings (unused var) (#648)v1.24.4-rc1v1.24.3-rc3v1.24.3-rc2v1.24.3
Adds and uses a macro to avoid the warning
Diffstat (limited to 'primedev/scripts/client/scriptserverbrowser.cpp')
-rw-r--r-- | primedev/scripts/client/scriptserverbrowser.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/primedev/scripts/client/scriptserverbrowser.cpp b/primedev/scripts/client/scriptserverbrowser.cpp index 21324535..b946f7a9 100644 --- a/primedev/scripts/client/scriptserverbrowser.cpp +++ b/primedev/scripts/client/scriptserverbrowser.cpp @@ -8,6 +8,7 @@ ADD_SQFUNC("void", NSRequestServerList, "", "", ScriptContext::UI) { + NOTE_UNUSED(sqvm); g_pMasterServerManager->RequestServerList(); return SQRESULT_NULL; } @@ -32,6 +33,7 @@ ADD_SQFUNC("int", NSGetServerCount, "", "", ScriptContext::UI) ADD_SQFUNC("void", NSClearRecievedServerList, "", "", ScriptContext::UI) { + NOTE_UNUSED(sqvm); g_pMasterServerManager->ClearServerList(); return SQRESULT_NULL; } @@ -114,6 +116,7 @@ ADD_SQFUNC("void", NSConnectToAuthedServer, "", "", ScriptContext::UI) ADD_SQFUNC("void", NSTryAuthWithLocalServer, "", "", ScriptContext::UI) { + NOTE_UNUSED(sqvm); // do auth request g_pMasterServerManager->AuthenticateWithOwnServer(g_pLocalPlayerUserID, g_pMasterServerManager->m_sOwnClientAuthToken); @@ -122,6 +125,7 @@ ADD_SQFUNC("void", NSTryAuthWithLocalServer, "", "", ScriptContext::UI) ADD_SQFUNC("void", NSCompleteAuthWithLocalServer, "", "", ScriptContext::UI) { + NOTE_UNUSED(sqvm); // literally just set serverfilter // note: this assumes we have no authdata other than our own if (g_pServerAuthentication->m_RemoteAuthenticationData.size()) |