Cleanup: resolve some unreferenced parameter warnings in MSVC

When the warning level is set to 4, some unreferenced parameter
warnings can appear

This commit resolves some of those warnings.
This commit is contained in:
2023-02-14 15:52:11 -03:00
committed by Germano Cavalcante
parent da65b21e2e
commit 7fcb262dfd
11 changed files with 40 additions and 18 deletions

View File

@@ -407,6 +407,9 @@ inline void execute_element_fn_as_multi_function(const ElementFn element_fn,
std::forward<decltype(args)>(args)...);
});
}
else {
UNUSED_VARS(exec_preset);
}
/* If devirtualized execution was disabled or not possible, use a fallback method which is
* slower but always works. */