From 6429ac6d63c399109adb80ef832827c94d04ce5e Mon Sep 17 00:00:00 2001 From: Michael Wetherell <mike.wetherell@ntlworld.com> Date: Mon, 17 Oct 2005 16:14:49 +0000 Subject: [PATCH] Warning fix, should be #ifdef instead of #if git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/wx.rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/msw/wx.rc b/include/wx/msw/wx.rc index c66cda217a..3931d5cf06 100644 --- a/include/wx/msw/wx.rc +++ b/include/wx/msw/wx.rc @@ -93,9 +93,9 @@ wxBITMAP_STD_COLOURS BITMAP "wx/msw/colours.bmp" #if !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0) -#if WX_CPU_AMD64 +#ifdef WX_CPU_AMD64 1 24 "wx/msw/amd64.manifest" -#elif WX_CPU_IA64 +#elif defined(WX_CPU_IA64) 1 24 "wx/msw/ia64.manifest" #elif !defined(__WIN64__) 1 24 "wx/msw/wx.manifest" -- 2.47.2