Skip to content

Commit

Permalink
Remove extra {} in declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
SRombauts committed Jul 24, 2022
1 parent cd24b93 commit 7d8b69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Statement.h
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ class Statement
bool mbDone{false}; //!< true when the last executeStep() had no more row to fetch

/// Map of columns index by name (mutable so getColumnIndex can be const)
mutable std::map<std::string, int> mColumnNames{};
mutable std::map<std::string, int> mColumnNames;
};


Expand Down

0 comments on commit 7d8b69e

Please sign in to comment.