mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:37:43 +00:00
LibWeb: Remove unused BrowsingContext::for_each_child()
This commit is contained in:
parent
413cc1774e
commit
f31b39ca18
1 changed files with 0 additions and 14 deletions
|
@ -81,20 +81,6 @@ public:
|
||||||
return IterationDecision::Continue;
|
return IterationDecision::Continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename Callback>
|
|
||||||
void for_each_child(Callback callback) const
|
|
||||||
{
|
|
||||||
for (auto node = first_child(); node; node = node->next_sibling())
|
|
||||||
callback(*node);
|
|
||||||
}
|
|
||||||
|
|
||||||
template<typename Callback>
|
|
||||||
void for_each_child(Callback callback)
|
|
||||||
{
|
|
||||||
for (auto node = first_child(); node; node = node->next_sibling())
|
|
||||||
callback(*node);
|
|
||||||
}
|
|
||||||
|
|
||||||
template<typename Callback>
|
template<typename Callback>
|
||||||
IterationDecision for_each_in_subtree(Callback callback) const
|
IterationDecision for_each_in_subtree(Callback callback) const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue