mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-17 00:23:00 +00:00
LibWeb: Fix a few "missing visit_edges" warnings from the GC verifier
This commit is contained in:
parent
3c3ead5ff4
commit
aac873fcec
Notes:
sideshowbarker
2024-07-17 02:37:08 +09:00
Author: https://github.com/mattco98
Commit: aac873fcec
Pull-request: https://github.com/SerenityOS/serenity/pull/23861
Reviewed-by: https://github.com/awesomekling
7 changed files with 36 additions and 7 deletions
|
@ -167,4 +167,11 @@ Optional<CSSPixelFraction> SVGDecodedImageData::intrinsic_aspect_ratio() const
|
|||
return {};
|
||||
}
|
||||
|
||||
void SVGDecodedImageData::SVGPageClient::visit_edges(Visitor& visitor)
|
||||
{
|
||||
Base::visit_edges(visitor);
|
||||
visitor.visit(m_host_page);
|
||||
visitor.visit(m_svg_page);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue