1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 09:37:44 +00:00

LibSQL: Remove unused SQL::Row constructors/methods

This commit is contained in:
Timothy Flynn 2022-11-29 08:49:29 -05:00 committed by Linus Groh
parent 4b70908dc4
commit 5336f23c7e
2 changed files with 0 additions and 31 deletions

View file

@ -26,11 +26,7 @@ namespace SQL {
*/
class Row : public Tuple {
public:
Row();
explicit Row(TupleDescriptor const&);
explicit Row(RefPtr<TableDef>, u32 pointer = 0);
Row(RefPtr<TableDef>, u32, Serializer&);
Row(Row const&) = default;
virtual ~Row() override = default;
[[nodiscard]] u32 next_pointer() const { return m_next_pointer; }
@ -41,9 +37,6 @@ public:
virtual void serialize(Serializer&) const override;
virtual void deserialize(Serializer&) override;
protected:
void copy_from(Row const&);
private:
RefPtr<TableDef> m_table;
u32 m_next_pointer { 0 };