Skip to content

Commit 7d8b69e

Browse files
committed
Remove extra {} in declaration
1 parent cd24b93 commit 7d8b69e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/SQLiteCpp/Statement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ class Statement
707707
bool mbDone{false}; //!< true when the last executeStep() had no more row to fetch
708708

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

713713

0 commit comments

Comments
 (0)