We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2644c31 commit 0f8d912Copy full SHA for 0f8d912
examples/example1/main.cpp
@@ -87,7 +87,7 @@ int main()
87
{
88
// Using SQLITE_VERSION would require #include <sqlite3.h> which we want to avoid: use SQLite::VERSION if possible.
89
// std::cout << "SQlite3 version " << SQLITE_VERSION << std::endl;
90
- std::cout << "SQlite3 version " << SQLite::VERSION << " (" << SQLite::getLibVersion() << ")" << std::endl;
+ std::cout << "SQlite3 compile time header version " << SQLite::VERSION << " (vs dynamic lib version " << SQLite::getLibVersion() << ")" << std::endl;
91
std::cout << "SQliteC++ version " << SQLITECPP_VERSION << std::endl;
92
93
////////////////////////////////////////////////////////////////////////////
0 commit comments