From abb1e5e8d451bf9d248ce4ae04d9ad2e0e98c77f Mon Sep 17 00:00:00 2001 From: SSimboeckMesu <156324821+SSimboeckMesu@users.noreply.github.com> Date: Mon, 16 Feb 2026 12:55:24 +0100 Subject: [PATCH] Harmonization of comment indentation --- headeronly_src/sqlite3pp.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headeronly_src/sqlite3pp.ipp b/headeronly_src/sqlite3pp.ipp index 6440c61..25924b6 100644 --- a/headeronly_src/sqlite3pp.ipp +++ b/headeronly_src/sqlite3pp.ipp @@ -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"); }