mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-05 02:06:02 -04:00
Merge pull request #102 from Nemo1369/master
Remove redundant const specifier
This commit is contained in:
commit
b6512c4c6f
@ -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
|
||||
|
||||
|
||||
/**
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user