LibSQL: Remove unused method Heap::has_block

This commit is contained in:
Jelle Raaijmakers 2022-11-26 01:20:05 +01:00 committed by Andreas Kling
parent 0460a654d4
commit e5e00a682b
Notes: sideshowbarker 2024-07-17 08:38:37 +09:00

View file

@ -39,7 +39,6 @@ public:
u32 size() const { return m_end_of_file; }
ErrorOr<ByteBuffer> read_block(u32);
[[nodiscard]] u32 new_record_pointer();
[[nodiscard]] bool has_block(u32 block) const { return block < size(); }
[[nodiscard]] bool valid() const { return static_cast<bool>(m_file); }
u32 schemas_root() const { return m_schemas_root; }