1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibWeb: Convert const pointer to nonnull into a reference

This commit is contained in:
Ben Wiederhake 2021-10-15 23:15:12 +02:00 committed by Andreas Kling
parent a36d13e36c
commit c55527944c
2 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ namespace Web::Layout {
FormattingContext::FormattingContext(Type type, Box& context_box, FormattingContext* parent)
: m_type(type)
, m_parent(parent)
, m_context_box(&context_box)
, m_context_box(context_box)
{
}