Codechange: Use std::any_of() (#10830)

When the result of std::find_if is compared only with end()
then '!= end()' is replaced with any_of().

Just... there's only one.
pull/562/head
PeterN 1 year ago committed by GitHub
parent 199e41c762
commit e4fd9d41d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -144,8 +144,7 @@ private:
this->indents.push_back(indent);
if (g->folded) {
/* Test if this group has children at all. If not, the folded flag should be cleared to avoid lingering unfold buttons in the list. */
auto child = std::find_if(source.begin(), source.end(), [g](const Group *child){ return child->parent == g->index; });
bool has_children = child != source.end();
bool has_children = std::any_of(source.begin(), source.end(), [g](const Group *child){ return child->parent == g->index; });
Group::Get(g->index)->folded = has_children;
} else {
AddChildren(source, g->index, indent + 1);

Loading…
Cancel
Save