Redundant const specifier removed

This commit is contained in:
Mikhail Komarov 2016-09-09 13:31:36 +03:00
parent 6d1806b2e4
commit 51885d7aa6
2 changed files with 2 additions and 2 deletions

View File

@ -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
/**

View File

@ -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();
}