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
4 changed files with 2 additions and 8 deletions

View File

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

View File

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

View File

@@ -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;

View File

@@ -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"