]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed #if !NOPCH to be #if !defined(NOPCH)
authorBrian Macy <nobody@localhost>
Sat, 29 May 1999 15:44:06 +0000 (15:44 +0000)
committerBrian Macy <nobody@localhost>
Sat, 29 May 1999 15:44:06 +0000 (15:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2594 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/wxprec.h

index 6f542b6a456b7d3c869e7fbb8ba1aa23631b8c81..045787256ea23c94aa79b06714381cd6705b21e0 100644 (file)
@@ -14,7 +14,7 @@
 
 // check if to use precompiled headers
 #if (defined(__BORLANDC__) || defined(__VISUALC__) || defined(__WATCOMC__)) && defined(__WXMSW__)
-    #if !NOPCH
+    #if !defined(NOPCH)
         #define WX_PRECOMP
     #endif
 #endif