Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes develop header cruft #828

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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