diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-03-08 16:29:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-03-08 16:29:22 (GMT) |
commit | ca757b033ff2aa41e513b93040e158de2efcfc9c (patch) | |
tree | f079a3b588186ad8705ec7f28427b67367688e8f /src/H5Pprivate.h | |
parent | 51d196f63514f5b0847d21e1d7c524fae2260e4c (diff) | |
download | hdf5-ca757b033ff2aa41e513b93040e158de2efcfc9c.zip hdf5-ca757b033ff2aa41e513b93040e158de2efcfc9c.tar.gz hdf5-ca757b033ff2aa41e513b93040e158de2efcfc9c.tar.bz2 |
[svn-r3559] Purpose:
C++ compatibility fix
Description:
'delete' is a reserved word in C++
Solution:
Change structure member named 'delete' into 'del'
Platforms tested:
FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index 7bd10c0..15e280e 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -49,7 +49,7 @@ typedef struct H5P_genprop_tag { void *def_value; /* Pointer to default value to pass along to create callback */ H5P_prp_set_func_t set; /* Function to call when a property value is set */ H5P_prp_get_func_t get; /* Function to call when a property value is retrieved */ - H5P_prp_delete_func_t delete; /* Function to call when a property is deleted */ + H5P_prp_delete_func_t del; /* Function to call when a property is deleted */ H5P_prp_close_func_t close; /* Function to call when a property is closed */ struct H5P_genprop_tag *next; /* Pointer to the next property in this list */ |