+2010-01-15 Ivan Maidanski <ivmai@mail.ru>
+
+ * include/gc_cpp.h (GC_PLACEMENT_DELETE): Define for Embarcadero
+ (formerly known as Borland) C++ compiler v6.21+.
+ * include/gc_cpp.h (GC_NO_OPERATOR_NEW_ARRAY): Define for ancient
+ VC++ compilers.
+
2009-12-18 Ivan Maidanski <ivmai@mail.ru>
* win32_threads.c (GC_register_my_thread_inner,
&& (defined(__BORLANDC__) && (__BORLANDC__ < 0x450) \
|| (defined(__GNUC__) && \
(__GNUC__ < 2 || __GNUC__ == 2 && __GNUC_MINOR__ < 6)) \
+ || (defined(_MSC_VER) && _MSC_VER <= 1020) \
|| (defined(__WATCOMC__) && __WATCOMC__ < 1050))
# define GC_NO_OPERATOR_NEW_ARRAY
#endif
# define GC_OPERATOR_NEW_ARRAY
#endif
-#if ! defined ( __BORLANDC__ ) /* Confuses the Borland compiler. */ \
+#if (!defined(__BORLANDC__) || __BORLANDC__ > 0x0620) \
&& ! defined ( __sgi ) && ! defined( __WATCOMC__ ) \
&& (!defined(_MSC_VER) || _MSC_VER > 1020)
# define GC_PLACEMENT_DELETE