summaryrefslogtreecommitdiffstats
path: root/src/H5PLpublic.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2013-04-03 20:53:13 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2013-04-03 20:53:13 (GMT)
commit68b0945687c29ce157280b66ec1773d6b0890069 (patch)
tree7955b4c1d38c7322918e503a375a091b86aa4801 /src/H5PLpublic.h
parentf2e9f4e8c66c35ed2f0541039da9028940a8b0a3 (diff)
downloadhdf5-68b0945687c29ce157280b66ec1773d6b0890069.zip
hdf5-68b0945687c29ce157280b66ec1773d6b0890069.tar.gz
hdf5-68b0945687c29ce157280b66ec1773d6b0890069.tar.bz2
[svn-r23540] I took out the "const" symbol from H5PL_get_plugin_type and H5PL_get_plugin_info functions.
Tested on jam - simple change.
Diffstat (limited to 'src/H5PLpublic.h')
-rw-r--r--src/H5PLpublic.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5PLpublic.h b/src/H5PLpublic.h
index 519ac38..9b71164 100644
--- a/src/H5PLpublic.h
+++ b/src/H5PLpublic.h
@@ -74,12 +74,11 @@ typedef enum H5PL_type_t {
extern "C" {
#endif
- H5PLUGIN_DLL const H5PL_type_t H5PL_get_plugin_type(void);
- H5PLUGIN_DLL const H5Z_class2_t* H5PL_get_plugin_info(void);
+ H5PLUGIN_DLL H5PL_type_t H5PL_get_plugin_type(void);
+ H5PLUGIN_DLL H5Z_class2_t* H5PL_get_plugin_info(void);
#ifdef __cplusplus
}
#endif
#endif /* _H5PLpublic_H */
-