From 03affa0d419b9a342bd823dcc9c14049d6eb1a52 Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Thu, 6 Jun 2002 13:53:49 +0000 Subject: [PATCH] Use if __MACH__ instead of ifdef __MACH__ [SVN r14089] --- include/boost/config/platform/macos.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/platform/macos.hpp b/include/boost/config/platform/macos.hpp index 51d03012..424027c4 100644 --- a/include/boost/config/platform/macos.hpp +++ b/include/boost/config/platform/macos.hpp @@ -10,7 +10,7 @@ #define BOOST_PLATFORM "Mac OS" // If __MACH__, we're using the BSD standard C library, not the MSL: -#if defined(__MACH__) +#if __MACH__ # define BOOST_NO_CTYPE_FUNCTIONS # define BOOST_NO_CWCHAR