mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:27:43 +00:00
LibSQL: Rename Row::next_pointer setter to Row::set_next_pointer
This commit is contained in:
parent
0986b383cd
commit
c3a6fad080
2 changed files with 3 additions and 2 deletions
|
@ -34,7 +34,8 @@ public:
|
|||
virtual ~Row() override = default;
|
||||
|
||||
[[nodiscard]] u32 next_pointer() const { return m_next_pointer; }
|
||||
void next_pointer(u32 ptr) { m_next_pointer = ptr; }
|
||||
void set_next_pointer(u32 ptr) { m_next_pointer = ptr; }
|
||||
|
||||
RefPtr<TableDef> table() const { return m_table; }
|
||||
[[nodiscard]] virtual size_t length() const override { return Tuple::length() + sizeof(u32); }
|
||||
virtual void serialize(Serializer&) const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue