mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
LibJS: Only use 1 bit for Cell boolean flag
This commit is contained in:
parent
455167008d
commit
0e232b1c8d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ protected:
|
|||
|
||||
private:
|
||||
bool m_mark : 1 { false };
|
||||
bool m_overrides_must_survive_garbage_collection { false };
|
||||
bool m_overrides_must_survive_garbage_collection : 1 { false };
|
||||
State m_state : 1 { State::Live };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue