mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 02:26:10 +00:00
LibSQL: Fix minor const-correctness issues
This commit is contained in:
parent
0cdd227e9b
commit
65710bf3f7
Notes:
sideshowbarker
2024-07-17 05:58:46 +09:00
Author: https://github.com/awesomekling
Commit: 65710bf3f7
Pull-request: https://github.com/SerenityOS/serenity/pull/17557
Reviewed-by: https://github.com/linusg
3 changed files with 5 additions and 5 deletions
|
@ -41,8 +41,8 @@ public:
|
|||
static Key get_table_key(DeprecatedString const&, DeprecatedString const&);
|
||||
ResultOr<NonnullRefPtr<TableDef>> get_table(DeprecatedString const&, DeprecatedString const&);
|
||||
|
||||
ErrorOr<Vector<Row>> select_all(TableDef const&);
|
||||
ErrorOr<Vector<Row>> match(TableDef const&, Key const&);
|
||||
ErrorOr<Vector<Row>> select_all(TableDef&);
|
||||
ErrorOr<Vector<Row>> match(TableDef&, Key const&);
|
||||
ErrorOr<void> insert(Row&);
|
||||
ErrorOr<void> remove(Row&);
|
||||
ErrorOr<void> update(Row&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue