You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest change to Database.cpp triggers a compiler warning from Clang:
/Couchbase/SQForest/vendor/SQLiteCpp/src/Database.cpp:35:21: warning: 'extern' variable has an initializer [-Wextern-initializer]
extern const char* VERSION = SQLITE_VERSION;
The extern qualifiers on this and the other declarations here should be removed, since these are the actual definitions of the constants, not just references to them.
The text was updated successfully, but these errors were encountered:
The latest change to Database.cpp triggers a compiler warning from Clang:
The
extern
qualifiers on this and the other declarations here should be removed, since these are the actual definitions of the constants, not just references to them.The text was updated successfully, but these errors were encountered: