Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Workaround compiler warnings in the SQLite core library. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vs2012 |
Files: | files | file ages | folders |
SHA1: |
f75845d9b9449360b36cf74fa33c36cc |
User & Date: | mistachkin 2012-09-14 09:15:42.531 |
Context
2012-09-14
| ||
09:32 | Add missing test constraint. check-in: 6aef20a0c3 user: mistachkin tags: vs2012 | |
09:15 | Workaround compiler warnings in the SQLite core library. check-in: f75845d9b9 user: mistachkin tags: vs2012 | |
09:14 | Fix compiler warning. check-in: 76637ea284 user: mistachkin tags: vs2012 | |
Changes
Changes to SQLite.Interop/src/win/interop.c.
1 2 3 4 5 6 7 8 9 | #define SQLITE_API __declspec(dllexport) #include "../core/sqlite3.c" #if defined(INTEROP_EXTENSION_FUNCTIONS) #include "../contrib/extension-functions.c" extern int RegisterExtensionFunctions(sqlite3 *db); #endif #if defined(INTEROP_CODEC) | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | #define SQLITE_API __declspec(dllexport) #pragma warning(disable: 4703) #include "../core/sqlite3.c" #pragma warning(default: 4703) #if defined(INTEROP_EXTENSION_FUNCTIONS) #include "../contrib/extension-functions.c" extern int RegisterExtensionFunctions(sqlite3 *db); #endif #if defined(INTEROP_CODEC) |
︙ | ︙ |