mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 10:09:14 +00:00
LibSQL: Rename Row::next_pointer setter to Row::set_next_pointer
This commit is contained in:
parent
0986b383cd
commit
c3a6fad080
Notes:
sideshowbarker
2024-07-17 23:02:37 +09:00
Author: https://github.com/trflynn89
Commit: c3a6fad080
Pull-request: https://github.com/SerenityOS/serenity/pull/16239
Reviewed-by: https://github.com/gmta
Reviewed-by: https://github.com/linusg
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