From 498919ddcd514f3f3a153357a852065a11bd8585 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 3 Aug 2005 20:08:14 +0000 Subject: [PATCH] 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 --- include/wx/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.45.2