From 0e232b1c8d8599fdeb64213909294c926776580c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 24 Oct 2022 19:37:36 +0200 Subject: [PATCH] LibJS: Only use 1 bit for Cell boolean flag --- Userland/Libraries/LibJS/Heap/Cell.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Heap/Cell.h b/Userland/Libraries/LibJS/Heap/Cell.h index 94d219e181..549d06c356 100644 --- a/Userland/Libraries/LibJS/Heap/Cell.h +++ b/Userland/Libraries/LibJS/Heap/Cell.h @@ -98,7 +98,7 @@ protected: private: 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 }; };