WebContent: Ignore GC for page client member of BackingStoreManager

This is very non-ideal, but the use of a reference for this member is
technically ok in its current usage as a member of the PageClient
itself.
This commit is contained in:
Andrew Kaster 2024-07-25 14:17:17 -06:00
parent b73bd76571
commit cdffc4238a
Notes: github-actions[bot] 2024-07-26 00:37:02 +00:00

View file

@ -35,7 +35,8 @@ public:
BackingStoreManager(PageClient&);
private:
PageClient& m_page_client;
// FIXME: We should come up with an ownership model for this class that makes the GC-checker happy
IGNORE_GC PageClient& m_page_client;
i32 m_front_bitmap_id { -1 };
i32 m_back_bitmap_id { -1 };