Everywhere: Change west consts caught by clang-format-21 to east consts

This commit is contained in:
Luke Wilde 2025-08-29 13:02:52 +01:00 committed by Tim Ledbetter
commit b17783bb10
Notes: github-actions[bot] 2025-08-29 17:20:11 +00:00
49 changed files with 80 additions and 80 deletions

View file

@ -76,7 +76,7 @@ bool SVGSymbolElement::is_direct_child_of_use_shadow_tree() const
return false;
}
auto host = static_cast<const DOM::ShadowRoot&>(*maybe_shadow_root).host();
auto host = static_cast<DOM::ShadowRoot const&>(*maybe_shadow_root).host();
return is<SVGUseElement>(host);
}