]> git.saurik.com Git - wxWidgets.git/commitdiff
disable MSVC deprecation warnings as we intentionally test deprecated methods in...
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 9 Jul 2009 12:22:37 +0000 (12:22 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 9 Jul 2009 12:22:37 +0000 (12:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61353 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/log/logtest.cpp

index 089ef82c51182d3429c05f15c5ca5b3fddff3e04..f1dbb8cffab1ad197bd86319f9b4bceeb7963491 100644 (file)
 
 #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
 // ----------------------------------------------------------------------------