From: Gilles Depeyrot Date: Sun, 25 Aug 2002 18:20:46 +0000 (+0000) Subject: BSD systems define _T to something different in ctype.h, therefore include X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c01664952118dba838f7a28aff0a93a6145d1edb?ds=sidebyside BSD systems define _T to something different in ctype.h, therefore include ctype.h before overriding _T git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16777 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index 89bf08deea..4383bd7b8b 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -194,8 +194,9 @@ // define _T() and related macros // ---------------------------------------------------------------------------- -// BSD systems define _T() to be something different, override it +// BSD systems define _T() to be something different in ctype.h, override it #if defined(__FreeBSD__) || defined(__DARWIN__) + #include #undef _T #endif