mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
LibJS: Only use 1 bit for Cell boolean flag
This commit is contained in:
parent
455167008d
commit
0e232b1c8d
Notes:
sideshowbarker
2024-07-17 05:09:22 +09:00
Author: https://github.com/awesomekling
Commit: 0e232b1c8d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ protected:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool m_mark : 1 { false };
|
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 };
|
State m_state : 1 { State::Live };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue