Skip to content

Commit

Permalink
Fixed minor linting warning
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellockyer committed Dec 27, 2023
1 parent 8bda876 commit 603e468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/statement.h
Expand Up @@ -69,8 +69,8 @@ namespace Values {
typedef Field Null;
}

typedef std::vector<std::unique_ptr<Values::Field>> Row;
typedef std::vector<std::unique_ptr<Row>> Rows;
typedef std::vector<std::unique_ptr<Values::Field> > Row;
typedef std::vector<std::unique_ptr<Row> > Rows;
typedef Row Parameters;


Expand Down

0 comments on commit 603e468

Please sign in to comment.