Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions headeronly_src/sqlite3pp.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ namespace sqlite3pp
auto rc = connect(dbname, flags, vfs);
if (rc != SQLITE_OK) {
// Whether or not an error occurs when it is opened, resources
// associated with the database connection handle should be released
// by passing it to sqlite3_close() when it is no longer required.
// associated with the database connection handle should be released
// by passing it to sqlite3_close() when it is no longer required.
disconnect();
throw database_error("can't connect database");
}
Expand Down