From 51885d7aa6f9078acdb51a2f09ffc9d16fa9366f Mon Sep 17 00:00:00 2001 From: Mikhail Komarov Date: Fri, 9 Sep 2016 13:31:36 +0300 Subject: [PATCH] Redundant const specifier removed --- include/SQLiteCpp/Database.h | 2 +- src/Database.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SQLiteCpp/Database.h b/include/SQLiteCpp/Database.h index bff00c0..70ca2e5 100644 --- a/include/SQLiteCpp/Database.h +++ b/include/SQLiteCpp/Database.h @@ -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 /** diff --git a/src/Database.cpp b/src/Database.cpp index 890110c..f640218 100644 --- a/src/Database.cpp +++ b/src/Database.cpp @@ -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(); }