mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
Libraries: Use AK::Variant default initialization where appropriate
This commit is contained in:
parent
98a0f9c0bd
commit
32e98d0924
8 changed files with 12 additions and 12 deletions
|
@ -352,7 +352,7 @@ private:
|
|||
// Type::Comment (comment data), Type::StartTag and Type::EndTag (tag name)
|
||||
String m_string_data;
|
||||
|
||||
Variant<Empty, u32, OwnPtr<DoctypeData>, OwnPtr<Vector<Attribute>>> m_data { Empty {} };
|
||||
Variant<Empty, u32, OwnPtr<DoctypeData>, OwnPtr<Vector<Attribute>>> m_data {};
|
||||
|
||||
Position m_start_position;
|
||||
Position m_end_position;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue