]> git.saurik.com Git - wxWidgets.git/commitdiff
correct -Wundef warning for __MSL__
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 8 Aug 2005 21:46:31 +0000 (21:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 8 Aug 2005 21:46:31 +0000 (21:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35154 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dc.cpp

index d4dc936fcd1dbdcbd81971068b9a3ecc5f2b6375..d1cfb0411d052ff896318ff0f2b9beca1816f316 100644 (file)
 #include "wx/image.h"
 #include "wx/log.h"
 
-#if __MSL__ >= 0x6000
-namespace std {}
-using namespace std ;
+#ifdef __MSL__
+    #if __MSL__ >= 0x6000
+        namespace std {}
+        using namespace std ;
+    #endif
 #endif
 
 #include "wx/mac/private.h"