summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-10-22 21:11:13 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-10-22 21:11:13 (GMT)
commit3fc818431902cf5d2fe714e35a9278671cd0eef6 (patch)
treec1f0bb50c4f3fc0c7474cf490e046216810a76ca /test
parentdf980186393c9d37227b7eb6c42ce929578857eb (diff)
downloadhdf5-3fc818431902cf5d2fe714e35a9278671cd0eef6.zip
hdf5-3fc818431902cf5d2fe714e35a9278671cd0eef6.tar.gz
hdf5-3fc818431902cf5d2fe714e35a9278671cd0eef6.tar.bz2
[svn-r9449] 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:
Diffstat (limited to 'test')
-rw-r--r--test/tconfig.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/tconfig.c b/test/tconfig.c
index 9e2a792..5f1c246 100644
--- a/test/tconfig.c
+++ b/test/tconfig.c
@@ -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);
-
- /* standard C99 basic types */
-#if H5_SIZEOF_LONG_DOUBLE > 0
vrfy_ctype(long double, H5_SIZEOF_LONG_DOUBLE);
-#endif
+ /* standard C99 basic types */
#if H5_SIZEOF_LONG_LONG > 0
vrfy_cint_type(long_long, unsigned long_long, H5_SIZEOF_LONG_LONG);
#endif