- Prevent a redefinition of _pctype in newer GCC versions (like 4.3.2)

See issue #3598 for more details.

svn path=/trunk/; revision=36812
This commit is contained in:
Colin Finck 2008-10-18 20:49:00 +00:00
parent 35fe207a58
commit 290a31c692
2 changed files with 5 additions and 6 deletions

View file

@ -1,6 +1,8 @@
#ifndef __TKEYMAP_H
#define __TKEYMAP_H
#include "tkeydef.h"
#ifdef __BORLANDC__
#include <classlib\arrays.h>
#else
@ -8,8 +10,6 @@
#include "stl_bids.h"
#endif
#include "tkeydef.h"
//AVS
typedef TArrayAsVector<TKeyDef> keyArray;

View file

@ -29,6 +29,9 @@
// originally part of KeyTrans.cpp //
/////////////////////////////////////////////////////////
#include "tmapldr.h"
#include "tnconfig.h"
#ifdef __BORLANDC__
#include <fstream.h>
#else
@ -36,10 +39,6 @@
#include <fstream>
#endif
#include "tmapldr.h"
#include "tnerror.h"
#include "tnconfig.h"
// It's probably a good idea to turn off the "identifier was truncated" warning
// in MSVC (Paul Brannan 5/25/98)
#ifdef _MSC_VER