diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-26 21:45:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-26 21:45:32 (GMT) |
commit | 74a0a02c89655c7e25b8b2791b029d79b79257cd (patch) | |
tree | 2d8d03d5f91588473cd66a563526a4ce430b6b6e /src/H5Sprivate.h | |
parent | f8fe0c19d77125f33158d98a2c4cae01879db2b5 (diff) | |
download | hdf5-74a0a02c89655c7e25b8b2791b029d79b79257cd.zip hdf5-74a0a02c89655c7e25b8b2791b029d79b79257cd.tar.gz hdf5-74a0a02c89655c7e25b8b2791b029d79b79257cd.tar.bz2 |
[svn-r3203] Purpose:
Removal of spurious warnings
Description:
On HP-UX systems, the compiler would warn of a redeclaration of
H5G_entry_t in the H5Sprivate.h header.
Solution:
Removed the prototype declaration since H5Oprivate.h includes the
H5Gprivate.h header file already.
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r-- | src/H5Sprivate.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h index d5b7fc9..53a6f0a 100644 --- a/src/H5Sprivate.h +++ b/src/H5Sprivate.h @@ -192,8 +192,7 @@ __DLLVAR__ const H5S_mconv_t H5S_ALL_MCONV[]; __DLLVAR__ const H5S_fconv_t H5S_HYPER_FCONV[]; __DLLVAR__ const H5S_mconv_t H5S_HYPER_MCONV[]; -/* Forward declarations for prototypes arguments */ -struct H5G_entry_t; +/* We get the declaration of H5G_entry_t from the H5Oprivate.h file */ __DLL__ H5S_t *H5S_create(H5S_class_t type); __DLL__ H5S_t *H5S_copy(const H5S_t *src); |