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

Fix unused argument.

parent 5f81f713
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,10 @@ parse_long_option(struct model_config *restrict setup,
int pioConfHandle, pioRoleFunc *pioRoleAssign,
const char *str)
{
#ifndef USE_MPI
(void)pioConfHandle;
(void)pioRoleAssign;
#endif
static const char cacheRedistStr[] = "cache-redists",
pioRoleSchemeOptionStr[] = "pio-role-scheme",
uuidCreateOptionStr[] = "no-create-uuid";
......
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