Skip to content

Commit

Permalink
Removes develop header cruft (#828)
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins authored Jul 9, 2021
1 parent 8e2fc4a commit 86e8238
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
3 changes: 0 additions & 3 deletions c++/src/H5DataType.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
#ifndef H5DataType_H
#define H5DataType_H

/* Include package's developer header */
#include "H5Tdevelop.h"

namespace H5 {

/*! \class DataType
Expand Down
3 changes: 0 additions & 3 deletions fortran/src/H5Tf.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@

#include "H5f90.h"

/* Include package's developer header */
#include "H5Tdevelop.h"

/****if* H5Tf/h5topen_c
* NAME
* h5topen_c
Expand Down
2 changes: 1 addition & 1 deletion test/h5test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/h5test.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 86e8238

Please sign in to comment.