summaryrefslogtreecommitdiffstats
path: root/src/H5PLplugin_cache.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-08-02 15:32:31 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-08-02 15:32:31 (GMT)
commit81340c609ba5049b34845ff2f06b2025ec5d5b22 (patch)
tree1664d97cbf11b35800b32864fa1bb55d377761f1 /src/H5PLplugin_cache.c
parent8b8e7ae23222387e14ba95a53e0ab4d10cc8687f (diff)
downloadhdf5-81340c609ba5049b34845ff2f06b2025ec5d5b22.zip
hdf5-81340c609ba5049b34845ff2f06b2025ec5d5b22.tar.gz
hdf5-81340c609ba5049b34845ff2f06b2025ec5d5b22.tar.bz2
Moved H5PL diagnostic pragmas to comply with old gcc requirements that they
be outside of functions.
Diffstat (limited to 'src/H5PLplugin_cache.c')
-rw-r--r--src/H5PLplugin_cache.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/H5PLplugin_cache.c b/src/H5PLplugin_cache.c
index 30a0798..d826ba0 100644
--- a/src/H5PLplugin_cache.c
+++ b/src/H5PLplugin_cache.c
@@ -250,6 +250,11 @@ done:
*
*-------------------------------------------------------------------------
*/
+/* See the other use of H5PL_GET_LIB_FUNC() for an explanation
+ * for why we disable -Wpedantic here.
+ */
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wpedantic"
herr_t
H5PL__find_plugin_in_cache(const H5PL_search_params_t *search_params, hbool_t *found, const void **plugin_info)
{
@@ -276,16 +281,9 @@ H5PL__find_plugin_in_cache(const H5PL_search_params_t *search_params, hbool_t *f
H5PL_get_plugin_info_t get_plugin_info_function;
const H5Z_class2_t *filter_info;
- /* Get the "get plugin info" function from the plugin.
- *
- * See the other use of H5PL_GET_LIB_FUNC() for an explanation
- * for why we disable -Wpedantic here.
- */
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wpedantic"
+ /* Get the "get plugin info" function from the plugin. */
if (NULL == (get_plugin_info_function = (H5PL_get_plugin_info_t)H5PL_GET_LIB_FUNC((H5PL_cache_g[u]).handle, "H5PLget_plugin_info")))
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get function for H5PLget_plugin_info")
-#pragma GCC diagnostic pop
/* Call the "get plugin info" function */
if (NULL == (filter_info = (const H5Z_class2_t *)(*get_plugin_info_function)()))
@@ -305,4 +303,5 @@ H5PL__find_plugin_in_cache(const H5PL_search_params_t *search_params, hbool_t *f
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5PL__find_plugin_in_cache() */
+#pragma GCC diagnostic pop