diff --git a/.gitignore b/.gitignore index efd78af..6b876a9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ Debug Release - -*.ncb -*.suo -*.user \ No newline at end of file + +*.ncb +*.suo +*.user +*~ diff --git a/src/SQLiteC++/Database.h b/src/SQLiteC++/Database.h index 13b52f1..3e34a19 100644 --- a/src/SQLiteC++/Database.h +++ b/src/SQLiteC++/Database.h @@ -73,7 +73,7 @@ public: * * @param[in] aTimeoutMs Amount of milliseconds to wait before returning SQLITE_BUSY */ - inline int Database::setBusyTimeout(int aTimeoutMs) // throw(); nothrow + inline int setBusyTimeout(int aTimeoutMs) // throw(); nothrow { return sqlite3_busy_timeout(mpSQLite, aTimeoutMs); } @@ -83,7 +83,7 @@ public: * * @return Rowid of the most recent successful INSERT into the database, or 0 if there was none. */ - inline sqlite3_int64 Database::getLastInsertRowid(void) const // throw(); nothrow + inline sqlite3_int64 getLastInsertRowid(void) const // throw(); nothrow { return sqlite3_last_insert_rowid(mpSQLite); }