diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-07-09 21:27:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 21:27:10 (GMT) |
commit | 86e8238ad32e70b56cdc61c56551ca71bd7d46b9 (patch) | |
tree | ca25db71338a2fa08c2003921bb1d79904c62b0f | |
parent | 8e2fc4a2e2325a006d42b1df5c339549cdd2cb94 (diff) | |
download | hdf5-86e8238ad32e70b56cdc61c56551ca71bd7d46b9.zip hdf5-86e8238ad32e70b56cdc61c56551ca71bd7d46b9.tar.gz hdf5-86e8238ad32e70b56cdc61c56551ca71bd7d46b9.tar.bz2 |
Removes develop header cruft (#828)
-rw-r--r-- | c++/src/H5DataType.h | 3 | ||||
-rw-r--r-- | fortran/src/H5Tf.c | 3 | ||||
-rw-r--r-- | test/h5test.c | 2 | ||||
-rw-r--r-- | test/h5test.h | 2 |
4 files changed, 2 insertions, 8 deletions
diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h index 7442edc..109dcbb 100644 --- a/c++/src/H5DataType.h +++ b/c++/src/H5DataType.h @@ -15,9 +15,6 @@ #ifndef H5DataType_H #define H5DataType_H -/* Include package's developer header */ -#include "H5Tdevelop.h" - namespace H5 { /*! \class DataType diff --git a/fortran/src/H5Tf.c b/fortran/src/H5Tf.c index 3da4a29..1516cc7 100644 --- a/fortran/src/H5Tf.c +++ b/fortran/src/H5Tf.c @@ -21,9 +21,6 @@ #include "H5f90.h" -/* Include package's developer header */ -#include "H5Tdevelop.h" - /****if* H5Tf/h5topen_c * NAME * h5topen_c diff --git a/test/h5test.c b/test/h5test.c index 4dff00d..755ae93 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -1195,7 +1195,7 @@ h5_set_info_object(void) valp++; /* copy key/value pair into temporary buffer */ - len = strcspn(valp, ";"); + len = HDstrcspn(valp, ";"); next = &valp[len]; if (NULL == (key_val = (char *)HDcalloc(1, len + 1))) return -1; diff --git a/test/h5test.h b/test/h5test.h index db1a887..2855fb5 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -22,7 +22,7 @@ /* * Include required headers. This file tests internal library functions, - * so we include the private headers here, along with developer routines. + * so we include the private headers here. */ #include "hdf5.h" #include "H5private.h" |