From acee448fb9b49817cadf6de9c0e09f279515bf9d Mon Sep 17 00:00:00 2001 From: "Michael Hirsch, Ph.D" Date: Sun, 1 Dec 2019 00:19:44 -0500 Subject: ci/test: unused args for Windows --- test cases/windows/4 winmaincpp/prog.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test cases/windows/4 winmaincpp/prog.cpp') diff --git a/test cases/windows/4 winmaincpp/prog.cpp b/test cases/windows/4 winmaincpp/prog.cpp index aeecb7b82..618225771 100644 --- a/test cases/windows/4 winmaincpp/prog.cpp +++ b/test cases/windows/4 winmaincpp/prog.cpp @@ -8,5 +8,10 @@ WinMain( HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow) { +// avoid unused argument error while matching template + ((void)hInstance); + ((void)hPrevInstance); + ((void)lpszCmdLine); + ((void)nCmdShow); return 0; } -- cgit v1.2.3