Silence unused variable warnings in for_all_elements_exec

This commit is contained in:
Christian Mazakas
2023-03-17 13:52:12 -07:00
parent d2b1f095c8
commit 6abb94bb68

View File

@ -796,7 +796,7 @@ private:
{
for_all_elements_exec(
std::forward<ExecutionPolicy>(policy),
[&](group_type* pg,unsigned int n,element_type* p){f(p);});
[&](group_type* /* pg */,unsigned int /* n */,element_type* p){f(p);});
}
template<typename ExecutionPolicy,typename F>