From 966dbb19901e7b7e93d22071474329b7c36aa2cd Mon Sep 17 00:00:00 2001 From: chrchr-github <78114321+chrchr-github@users.noreply.github.com> Date: Tue, 8 Feb 2022 11:50:28 +0100 Subject: [PATCH] Windows.cfg: add UNREFERENCED_PARAMETER() macro (#3809) --- cfg/windows.cfg | 4 ++++ test/cfg/windows.cpp | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/cfg/windows.cfg b/cfg/windows.cfg index 36b50b7cc..3bf7427e2 100644 --- a/cfg/windows.cfg +++ b/cfg/windows.cfg @@ -17882,4 +17882,8 @@ HFONT CreateFont( + + + + diff --git a/test/cfg/windows.cpp b/test/cfg/windows.cpp index 8348c3c2c..f0a06681c 100644 --- a/test/cfg/windows.cpp +++ b/test/cfg/windows.cpp @@ -769,6 +769,10 @@ void uninitvar() _fileno(pFileUninit); } +void unreferencedParameter(int i) { + UNREFERENCED_PARAMETER(i); +} + void errorPrintf() { char bufC[50];