Removes develop header cruft (#828)

This commit is contained in:
Dana Robinson 2021-07-09 14:27:10 -07:00 committed by GitHub
parent 8e2fc4a2e2
commit 86e8238ad3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 8 deletions

View File

@ -15,9 +15,6 @@
#ifndef H5DataType_H #ifndef H5DataType_H
#define H5DataType_H #define H5DataType_H
/* Include package's developer header */
#include "H5Tdevelop.h"
namespace H5 { namespace H5 {
/*! \class DataType /*! \class DataType

View File

@ -21,9 +21,6 @@
#include "H5f90.h" #include "H5f90.h"
/* Include package's developer header */
#include "H5Tdevelop.h"
/****if* H5Tf/h5topen_c /****if* H5Tf/h5topen_c
* NAME * NAME
* h5topen_c * h5topen_c

View File

@ -1195,7 +1195,7 @@ h5_set_info_object(void)
valp++; valp++;
/* copy key/value pair into temporary buffer */ /* copy key/value pair into temporary buffer */
len = strcspn(valp, ";"); len = HDstrcspn(valp, ";");
next = &valp[len]; next = &valp[len];
if (NULL == (key_val = (char *)HDcalloc(1, len + 1))) if (NULL == (key_val = (char *)HDcalloc(1, len + 1)))
return -1; return -1;

View File

@ -22,7 +22,7 @@
/* /*
* Include required headers. This file tests internal library functions, * 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 "hdf5.h"
#include "H5private.h" #include "H5private.h"