Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Database.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ extern const int VERSION_NUMBER; ///< SQLITE_VERSION_NUMBER from the sqlite3.
/// Return SQLite version string using runtime call to the compiled library
const char* getLibVersion() noexcept; // nothrow
/// Return SQLite version number using runtime call to the compiled library
const int getLibVersionNumber() noexcept; // nothrow
int getLibVersionNumber() noexcept; // nothrow


/**
Expand Down
2 changes: 1 addition & 1 deletion src/Database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const char* getLibVersion() noexcept // nothrow
}

// Return SQLite version number using runtime call to the compiled library
const int getLibVersionNumber() noexcept // nothrow
int getLibVersionNumber() noexcept // nothrow
{
return sqlite3_libversion_number();
}
Expand Down