mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:07:47 +00:00
LibSQL: Don't copy strings when searching for a column's index
Also don't cast the return value to an int.
This commit is contained in:
parent
c3a6fad080
commit
47dd1b9f8b
2 changed files with 4 additions and 5 deletions
|
@ -70,7 +70,7 @@ public:
|
|||
[[nodiscard]] u32 hash() const;
|
||||
|
||||
protected:
|
||||
[[nodiscard]] Optional<size_t> index_of(String) const;
|
||||
[[nodiscard]] Optional<size_t> index_of(StringView) const;
|
||||
void copy_from(Tuple const&);
|
||||
virtual void serialize(Serializer&) const;
|
||||
virtual void deserialize(Serializer&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue