File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed
Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1818namespace SQLite
1919{
2020
21- extern const int INTEGER = SQLITE_INTEGER;
22- extern const int FLOAT = SQLITE_FLOAT;
23- extern const int TEXT = SQLITE_TEXT;
24- extern const int BLOB = SQLITE_BLOB;
25- extern const int Null = SQLITE_NULL;
21+ const int INTEGER = SQLITE_INTEGER;
22+ const int FLOAT = SQLITE_FLOAT;
23+ const int TEXT = SQLITE_TEXT;
24+ const int BLOB = SQLITE_BLOB;
25+ const int Null = SQLITE_NULL;
2626
2727
2828// Encapsulation of a Column in a row of the result pointed by the prepared Statement.
Original file line number Diff line number Diff line change 2424namespace SQLite
2525{
2626
27- extern const int OPEN_READONLY = SQLITE_OPEN_READONLY;
28- extern const int OPEN_READWRITE = SQLITE_OPEN_READWRITE;
29- extern const int OPEN_CREATE = SQLITE_OPEN_CREATE;
30- extern const int OPEN_URI = SQLITE_OPEN_URI;
31- extern const int OPEN_MEMORY = SQLITE_OPEN_MEMORY;
27+ const int OPEN_READONLY = SQLITE_OPEN_READONLY;
28+ const int OPEN_READWRITE = SQLITE_OPEN_READWRITE;
29+ const int OPEN_CREATE = SQLITE_OPEN_CREATE;
30+ const int OPEN_URI = SQLITE_OPEN_URI;
31+ const int OPEN_MEMORY = SQLITE_OPEN_MEMORY;
3232
33- extern const int OK = SQLITE_OK;
33+ const int OK = SQLITE_OK;
3434
35- extern const char * VERSION = SQLITE_VERSION;
36- extern const int VERSION_NUMBER = SQLITE_VERSION_NUMBER;
35+ const char * VERSION = SQLITE_VERSION;
36+ const int VERSION_NUMBER = SQLITE_VERSION_NUMBER;
3737
3838// Return SQLite version string using runtime call to the compiled library
3939const char * getLibVersion () noexcept // nothrow
You can’t perform that action at this time.
0 commit comments