diff --git a/Libraries/LibGC/Cell.h b/Libraries/LibGC/Cell.h index 98c0ab1661e..4b857db94d1 100644 --- a/Libraries/LibGC/Cell.h +++ b/Libraries/LibGC/Cell.h @@ -188,9 +188,9 @@ protected: void set_overrides_must_survive_garbage_collection(bool b) { m_overrides_must_survive_garbage_collection = b; } private: - bool m_mark : 1 { false }; - bool m_overrides_must_survive_garbage_collection : 1 { false }; - State m_state : 1 { State::Live }; + bool m_mark { false }; + bool m_overrides_must_survive_garbage_collection { false }; + State m_state { State::Live }; } SWIFT_UNSAFE_REFERENCE; }