From: Vadim Zeitlin Date: Wed, 3 Aug 2005 20:08:14 +0000 (+0000) Subject: test for __MWERKS__ with #ifdef, not #if (fixes a -Wundef gcc warning) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/498919ddcd514f3f3a153357a852065a11bd8585 test for __MWERKS__ with #ifdef, not #if (fixes a -Wundef gcc warning) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35075 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/platform.h b/include/wx/platform.h index 2e0320a144..6c2ceecbb5 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -19,7 +19,7 @@ Codewarrior doesn't define any Windows symbols until some headers are included */ -#if __MWERKS__ +#ifdef __MWERKS__ # include #endif