disable MSVC deprecation warnings as we intentionally test deprecated methods in this test

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61353 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-09 12:22:37 +00:00
parent fbbc4e8f80
commit 4855770182

View File

@@ -23,6 +23,14 @@
#include "wx/scopeguard.h"
#if WXWIN_COMPATIBILITY_2_8
// we override deprecated DoLog() and DoLogString() in this test, suppress
// warnings about it
#if wxCHECK_VISUALC_VERSION(7)
#pragma warning(disable: 4996)
#endif // VC++ 7+
#endif // WXWIN_COMPATIBILITY_2_8
// ----------------------------------------------------------------------------
// test loggers
// ----------------------------------------------------------------------------