Skip to content
Snippets Groups Projects
Commit 0dbdf0b2 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Annotate unused parameters.

parent 59b1d62a
No related branches found
No related tags found
2 merge requests!91Add alternative code path for huge buffers.,!89Miscellaneous fixes and CDI-PIO improvements
......@@ -84,6 +84,7 @@ gribHandleNew(int editionNumber)
return gh;
#else
(void)editionNumber;
return NULL;
#endif
}
......@@ -93,6 +94,8 @@ gribHandleDelete(void *gh)
{
#ifdef HAVE_LIBGRIB_API
grib_handle_delete((struct grib_handle *) gh);
#else
(void)gh;
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment