diff options
Diffstat (limited to 'Userland/Libraries/LibSQL/Tuple.h')
-rw-r--r-- | Userland/Libraries/LibSQL/Tuple.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibSQL/Tuple.h b/Userland/Libraries/LibSQL/Tuple.h index bf2d1c0db4..d4a1e6a5f5 100644 --- a/Userland/Libraries/LibSQL/Tuple.h +++ b/Userland/Libraries/LibSQL/Tuple.h @@ -35,9 +35,9 @@ public: Tuple& operator=(Tuple const&); - [[nodiscard]] DeprecatedString to_string() const; - explicit operator DeprecatedString() const { return to_string(); } - [[nodiscard]] Vector<DeprecatedString> to_string_vector() const; + [[nodiscard]] DeprecatedString to_deprecated_string() const; + explicit operator DeprecatedString() const { return to_deprecated_string(); } + [[nodiscard]] Vector<DeprecatedString> to_deprecated_string_vector() const; bool operator<(Tuple const& other) const { return compare(other) < 0; } bool operator<=(Tuple const& other) const { return compare(other) <= 0; } |