diff options
| author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-12-01 00:19:44 -0500 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-12-04 10:59:40 +0200 |
| commit | acee448fb9b49817cadf6de9c0e09f279515bf9d (patch) | |
| tree | 0e6c32e4d6ef53e7e478cf54f1d18292023798b9 /test cases/windows/4 winmaincpp | |
| parent | 7d162487e37e5bf51c94bdbd753a2f928287e655 (diff) | |
| download | meson-acee448fb9b49817cadf6de9c0e09f279515bf9d.tar.gz | |
ci/test: unused args for Windows
Diffstat (limited to 'test cases/windows/4 winmaincpp')
| -rw-r--r-- | test cases/windows/4 winmaincpp/prog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
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; } |
