include wx/wxchar.h after ctype.h to fix compilation problem with _T redefinition with CodeWarrior 9

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-09-26 16:14:35 +00:00
parent 10dc1363b5
commit 63effd42ea

View File

@@ -26,9 +26,6 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
/* headers if any */
#include "wx/wxchar.h"
/* overrides for regguts.h definitions, if any */ /* overrides for regguts.h definitions, if any */
/* regguts only includes standard headers if NULL is not defined, so do it /* regguts only includes standard headers if NULL is not defined, so do it
* ourselves here */ * ourselves here */
@@ -38,6 +35,9 @@
#include <limits.h> #include <limits.h>
#include <string.h> #include <string.h>
/* must include this after ctype.h inclusion for CodeWarrior/Mac */
#include "wx/wxchar.h"
/* /*
* Do not insert extras between the "begin" and "end" lines -- this * Do not insert extras between the "begin" and "end" lines -- this
* chunk is automatically extracted to be fitted into regex.h. * chunk is automatically extracted to be fitted into regex.h.