]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix wxUSING_VC_CRT_IO definition in the tests when not using MinGW.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Oct 2010 22:23:57 +0000 (22:23 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Oct 2010 22:23:57 +0000 (22:23 +0000)
The condition was always true for non-MinGW compilers because of a missing
pair of parentheses, do add them.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65753 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/testprec.h

index 7724b1959180b6aa4572620702e40ee395c6c59d..e597e6b9ac823f0cc81d35ba9e3c8931c393aeb7 100644 (file)
@@ -38,7 +38,8 @@
 // -Wundef if it involves an operation with undefined __MINGW_FEATURES__ so
 // test for the latter too to avoid it.
 #if defined(__VISUALC__) || \
-    (defined(__MINGW32__) && !defined(__MINGW_FEATURES__) || !__USE_MINGW_ANSI_STDIO)
+    (defined(__MINGW32__) && \
+     (!defined(__MINGW_FEATURES__) || !__USE_MINGW_ANSI_STDIO))
     #define wxUSING_VC_CRT_IO
 #endif