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:
Andrew Kaster 2025-04-04 07:04:10 -06:00 committed by Andrew Kaster
commit 8fd81c3338
Notes: github-actions[bot] 2025-04-04 19:07:56 +00:00
9 changed files with 39 additions and 51 deletions

View file

@ -168,12 +168,12 @@ private:
SelectionState m_selection_state { SelectionState::None };
bool m_positioned BOOL_BITFIELD { false };
bool m_fixed_position BOOL_BITFIELD { false };
bool m_sticky_position BOOL_BITFIELD { false };
bool m_absolutely_positioned BOOL_BITFIELD { false };
bool m_floating BOOL_BITFIELD { false };
bool m_inline BOOL_BITFIELD { false };
bool m_positioned : 1 { false };
bool m_fixed_position : 1 { false };
bool m_sticky_position : 1 { false };
bool m_absolutely_positioned : 1 { false };
bool m_floating : 1 { false };
bool m_inline : 1 { false };
};
inline DOM::Node* HitTestResult::dom_node()