Some symbols which are now part of the legacy are not updated in msvc/ecl/config.h.msvc6

This commit is contained in:
Juanjo Garcia-Ripoll 2012-06-17 16:19:11 +02:00 committed by Juan Jose Garcia Ripoll
parent bd8ffe7379
commit df4f2f716d

View file

@ -172,14 +172,13 @@ typedef unsigned char ecl_base_char;
/*
* Array limits
*/
#define ARANKLIM 64 /* array rank limit */
#define ECL_ARRAY_RANK_LIMIT 64
#ifdef GBC_BOEHM
#define ADIMLIM 536870911 /* array dimension limit */
#define ATOTLIM 536870911 /* array total limit */
#define ECL_ARRAY_DIMENSION_LIMIT 536870911
#else
#define ADIMLIM 16*1024*1024 /* array dimension limit */
#define ATOTLIM 16*1024*1024 /* array total limit */
#define ECL_ARRAY_DIMENSION_LIMIT 16*1024*1024
#endif
#define ECL_ARRAY_TOTAL_LIMIT ECL_ARRAY_DIMENSION_LIMIT
/*
* Function limits.