From 2452025c59b5a52844c7237ff1c21481491d2d58 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 14 Sep 2007 23:33:46 +0000 Subject: [PATCH] fix a couple of harmless warnings in MSVC build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48697 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/formatconverter/formatconvertertest.cpp | 6 ++++++ tests/strings/vararg.cpp | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/tests/formatconverter/formatconvertertest.cpp b/tests/formatconverter/formatconvertertest.cpp index ec629c59ef..1e5d50a3b1 100644 --- a/tests/formatconverter/formatconvertertest.cpp +++ b/tests/formatconverter/formatconvertertest.cpp @@ -282,6 +282,12 @@ void FormatConverterTestCase::check(const wxString& input, const wxString& expectedWcharUnix, const wxString& expectedWcharWindows) { + // all of them are unused in some build configurations + wxUnusedVar(expectedScanf); + wxUnusedVar(expectedUtf8); + wxUnusedVar(expectedWcharUnix); + wxUnusedVar(expectedWcharWindows); + wxString result, msg; #ifndef __WINDOWS__ diff --git a/tests/strings/vararg.cpp b/tests/strings/vararg.cpp index 556dd74ca2..5aca188c42 100644 --- a/tests/strings/vararg.cpp +++ b/tests/strings/vararg.cpp @@ -114,7 +114,13 @@ void VarArgTestCase::CharPrintf() WX_ASSERT_STR_EQUAL( "a to z", s ); // test char used as integer: + #ifdef _MSC_VER + #pragma warning(disable:4309) // truncation of constant value + #endif c = 240; + #ifdef _MSC_VER + #pragma warning(default:4309) + #endif s.Printf("value is %i (int)", c); WX_ASSERT_STR_EQUAL( wxString("value is -16 (int)"), s ); -- 2.47.2