Clang-Tidy: enable readability-named-parameter

This commit is contained in:
2020-07-03 17:07:01 +02:00
parent fac2e63bc0
commit 4a5389816b
11 changed files with 38 additions and 23 deletions

View File

@@ -62,7 +62,7 @@ struct RangeTask {
}
/* Splitting constructor for parallel reduce. */
RangeTask(RangeTask &other, tbb::split)
RangeTask(RangeTask &other, tbb::split /* unused */)
: func(other.func), userdata(other.userdata), settings(other.settings)
{
init_chunk(settings->userdata_chunk);