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

@ -142,9 +142,9 @@ private:
PropertyAttributes m_attributes { 0 };
TransitionType m_transition_type { TransitionType::Invalid };
bool m_dictionary BOOL_BITFIELD { false };
bool m_cacheable BOOL_BITFIELD { true };
bool m_is_prototype_shape BOOL_BITFIELD { false };
bool m_dictionary : 1 { false };
bool m_cacheable : 1 { true };
bool m_is_prototype_shape : 1 { false };
};
}