mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 19:19:30 +00:00
LibGC+LibWeb+LibJS: Remove workaround for Swift boolean bitfield issue
We're using a main snapshot everywhere, so we can yeet the workaround.
This commit is contained in:
parent
e73438e82c
commit
8fd81c3338
Notes:
github-actions[bot]
2025-04-04 19:07:56 +00:00
Author: https://github.com/ADKaster
Commit: 8fd81c3338
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4223
9 changed files with 39 additions and 51 deletions
|
@ -11,10 +11,10 @@
|
|||
namespace Web::CSS {
|
||||
|
||||
struct RequiredInvalidationAfterStyleChange {
|
||||
bool repaint BOOL_BITFIELD { false };
|
||||
bool rebuild_stacking_context_tree BOOL_BITFIELD { false };
|
||||
bool relayout BOOL_BITFIELD { false };
|
||||
bool rebuild_layout_tree BOOL_BITFIELD { false };
|
||||
bool repaint : 1 { false };
|
||||
bool rebuild_stacking_context_tree : 1 { false };
|
||||
bool relayout : 1 { false };
|
||||
bool rebuild_layout_tree : 1 { false };
|
||||
|
||||
void operator|=(RequiredInvalidationAfterStyleChange const& other)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue