Avoid harmless unused parameter warning in non-Unicode build

Suppress a warning about another unused parameter in formatting unit
test.
This commit is contained in:
Vadim Zeitlin 2023-05-04 01:22:07 +02:00
parent 9c1fa393b0
commit 0c23908f13

View File

@ -279,6 +279,7 @@ void FormatConverterTestCase::check(const wxString& input,
const wxString& expectedWcharWindows)
{
// all of them are unused in some build configurations
wxUnusedVar(input);
wxUnusedVar(expectedScanf);
wxUnusedVar(expectedUtf8);
wxUnusedVar(expectedWcharUnix);