summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2016-10-21 16:31:46 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2016-10-21 16:31:46 (GMT)
commit3543f58f25ac6b71f7f7fc7c7a1e40b7fd373a75 (patch)
tree85a79c43ac094927eeaa87e8e6e99cc58c991d3e /tools
parent8e0674691a820dd0df80d5408ceb017adefa86da (diff)
downloadhdf5-3543f58f25ac6b71f7f7fc7c7a1e40b7fd373a75.zip
hdf5-3543f58f25ac6b71f7f7fc7c7a1e40b7fd373a75.tar.gz
hdf5-3543f58f25ac6b71f7f7fc7c7a1e40b7fd373a75.tar.bz2
remove unneeded defines
Diffstat (limited to 'tools')
-rw-r--r--tools/h5repack/dynlib_vrpk.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/tools/h5repack/dynlib_vrpk.c b/tools/h5repack/dynlib_vrpk.c
index 63ceaec..8da0270 100644
--- a/tools/h5repack/dynlib_vrpk.c
+++ b/tools/h5repack/dynlib_vrpk.c
@@ -21,17 +21,6 @@
#define H5Z_FILTER_DYNLIB4 260
-/* gcc attribute support from H5private.h */
-#ifdef __cplusplus
-# define H5_ATTR_CONST /*void*/
-#else /* __cplusplus */
-#if defined(H5_HAVE_ATTRIBUTE) && !defined(__SUNPRO_C)
-# define H5_ATTR_CONST __attribute__((const))
-#else
-# define H5_ATTR_CONST /*void*/
-#endif
-#endif /* __cplusplus */
-
#define PUSH_ERR(func, minor, str) H5Epush2(H5E_DEFAULT, __FILE__, func, __LINE__, H5E_ERR_CLS, H5E_PLUGIN, minor, str)
static size_t H5Z_filter_dynlib4(unsigned int flags, size_t cd_nelmts,
@@ -48,8 +37,8 @@ const H5Z_class2_t H5Z_DYNLIB4[1] = {{
(H5Z_func_t)H5Z_filter_dynlib4, /* The actual filter function */
}};
-H5_ATTR_CONST H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
-H5_ATTR_CONST const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB4;}
+H5PL_type_t H5PLget_plugin_type(void) {return H5PL_TYPE_FILTER;}
+const void *H5PLget_plugin_info(void) {return H5Z_DYNLIB4;}
/*-------------------------------------------------------------------------
* Function: H5Z_filter_dynlib4