[svn-r9450] Purpose:

"Improvement"?

Description:
Long double is a standard C89 type.  Promoted it from
a conditional tested type to an assumed supported type.

Platforms tested:
H5committested.

Misc. update:
This commit is contained in:
Albert Cheng 2004-10-22 16:11:16 -05:00
parent b4d39e7adb
commit 06a81051f0

View File

@ -120,12 +120,9 @@ test_config_ctypes(void)
vrfy_cint_type(long, unsigned long, H5_SIZEOF_LONG);
vrfy_ctype(float, H5_SIZEOF_FLOAT);
vrfy_ctype(double, H5_SIZEOF_DOUBLE);
vrfy_ctype(long double, H5_SIZEOF_LONG_DOUBLE);
/* standard C99 basic types */
#if H5_SIZEOF_LONG_DOUBLE > 0
vrfy_ctype(long double, H5_SIZEOF_LONG_DOUBLE);
#endif
#if H5_SIZEOF_LONG_LONG > 0
vrfy_cint_type(long_long, unsigned long_long, H5_SIZEOF_LONG_LONG);
#endif