mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-05 10:16:01 -04:00
Fixed whitespace issues
This commit is contained in:
parent
4e770eb741
commit
bb7a047d52
@ -346,7 +346,8 @@ Statement::Ptr::~Ptr() noexcept // nothrow
|
|||||||
// as no Statement not Column objet use it anymore
|
// as no Statement not Column objet use it anymore
|
||||||
int ret = sqlite3_finalize(mpStmt);
|
int ret = sqlite3_finalize(mpStmt);
|
||||||
// Never throw an exception in a destructor
|
// Never throw an exception in a destructor
|
||||||
SQLITECPP_ASSERT((SQLITE_OK == ret || mLastStatus == ret), sqlite3_errmsg(mpSQLite)); // See SQLITECPP_ENABLE_ASSERT_HANDLER
|
SQLITECPP_ASSERT((SQLITE_OK == ret || mLastStatus == ret),
|
||||||
|
sqlite3_errmsg(mpSQLite)); // See SQLITECPP_ENABLE_ASSERT_HANDLER
|
||||||
|
|
||||||
// and delete the reference counter
|
// and delete the reference counter
|
||||||
delete mpRefCount;
|
delete mpRefCount;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user