mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
LibGUI: Explicitly default initialize class members
This commit is contained in:
parent
aafcdc4c72
commit
0bcfbdb072
2 changed files with 3 additions and 3 deletions
|
@ -61,8 +61,8 @@ private:
|
|||
TextPosition normalized_start() const { return m_start < m_end ? m_start : m_end; }
|
||||
TextPosition normalized_end() const { return m_start < m_end ? m_end : m_start; }
|
||||
|
||||
TextPosition m_start;
|
||||
TextPosition m_end;
|
||||
TextPosition m_start {};
|
||||
TextPosition m_end {};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue