mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:07:34 +00:00
LibSQL: Fix minor const-correctness issues
This commit is contained in:
parent
0cdd227e9b
commit
65710bf3f7
3 changed files with 5 additions and 5 deletions
|
@ -39,7 +39,7 @@ static DeprecatedString result_column_name(ResultColumn const& column, size_t co
|
|||
|
||||
ResultOr<ResultSet> Select::execute(ExecutionContext& context) const
|
||||
{
|
||||
NonnullRefPtrVector<ResultColumn> columns;
|
||||
NonnullRefPtrVector<ResultColumn const> columns;
|
||||
Vector<DeprecatedString> column_names;
|
||||
|
||||
auto const& result_column_list = this->result_column_list();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue