Fixed issue for bcc32 v6.30 and up.

* _Bool type is a known keyword for bcc32 v6.30 and up.
This commit is contained in:
davyw 2012-01-18 21:09:49 +01:00
parent 064a2b41b5
commit 22cbb3efcf

View file

@ -25,7 +25,7 @@
/**
* Borland C++ 5.5.1 does not define _Bool.
*/
#ifdef __BORLANDC__
#if defined(__BORLANDC__) && __BORLANDC__ < 0x630
typedef int _Bool;
#endif