1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

LibSQL: Add a note to Serializer about m_heap

This commit is contained in:
Jelle Raaijmakers 2023-04-23 22:24:43 +02:00 committed by Tim Flynn
parent fdac8331cc
commit 71c98546b8

View file

@ -160,6 +160,7 @@ private:
ByteBuffer m_buffer {};
size_t m_current_offset { 0 };
// FIXME: make this a NonnullRefPtr<Heap> so we can get rid of the null checks
RefPtr<Heap> m_heap { nullptr };
};