From: Vadim Zeitlin Date: Sat, 6 Jun 2009 23:24:57 +0000 (+0000) Subject: disable MSVC 8+ warning about using Unicode characters as we do want to use them X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a8f1775855dc46f738c0022c7ce2d1c1cbdbb775 disable MSVC 8+ warning about using Unicode characters as we do want to use them git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/testprec.h b/tests/testprec.h index 432d0405a2..b5178c8d1e 100644 --- a/tests/testprec.h +++ b/tests/testprec.h @@ -5,6 +5,12 @@ #if (defined(__VISUALC__) && (__VISUALC__ >= 1300)) || \ (defined(__GNUC__) && (__GNUC__ >= 3)) #define wxHAVE_U_ESCAPE + + // and disable warning that using them results in with MSVC 8+ + #if wxCHECK_VISUALC_VERSION(8) + // universal-character-name encountered in source + #pragma warning(disable:4428) + #endif #endif // thrown when assert fails in debug build