Merge branch 'patch-9' of https://github.com/gsjaardema/netcdf-c into pr-catchup

This commit is contained in:
Ward Fisher 2018-01-23 15:24:22 -06:00
commit bc5d6f1d05

View File

@ -254,11 +254,14 @@ These maximums are not used for netCDF-4/HDF5 files unless they were
created with the ::NC_CLASSIC_MODEL flag.
As a rule, NC_MAX_VAR_DIMS <= NC_MAX_DIMS.
NOTE: The NC_MAX_DIMS, NC_MAX_ATTRS, and NC_MAX_VARS limits
are *not* enforced after version 4.5.0
*/
/**@{*/
#define NC_MAX_DIMS 1024
#define NC_MAX_ATTRS 8192
#define NC_MAX_VARS 8192
#define NC_MAX_DIMS 1024 /* not enforced after 4.5.0 */
#define NC_MAX_ATTRS 8192 /* not enforced after 4.5.0 */
#define NC_MAX_VARS 8192 /* not enforced after 4.5.0 */
#define NC_MAX_NAME 256
#define NC_MAX_VAR_DIMS 1024 /**< max per variable dimensions */
/**@}*/