From 3c2d81033f8d7b8a651cbd416153748f40a98b77 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Wed, 25 Jun 2014 02:05:17 -0700 Subject: [PATCH] Mark WinMain parameters as unused --- test/win/test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/win/test.cpp b/test/win/test.cpp index ef435ca8c..6ba677442 100644 --- a/test/win/test.cpp +++ b/test/win/test.cpp @@ -202,5 +202,8 @@ int WINAPI WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPSTR cmdLine, blog(LOG_INFO, "Number of memory leaks: %llu", bnum_allocs()); DestroyWindow(hwnd); + UNUSED_PARAMETER(prevInstance); + UNUSED_PARAMETER(cmdLine); + UNUSED_PARAMETER(numCmd); return 0; } -- GitLab