diff options
author | 2015-01-31 23:36:03 +0100 | |
---|---|---|
committer | 2015-01-31 23:36:03 +0100 | |
commit | 22b90a3374a5bd6ad17341e463bbc4463fc0e326 (patch) | |
tree | 06396d61eff61f51b46c3b7231e3046893827884 /3rdparty/sqlite3/sqlite3.h | |
parent | f47544a1b7b444b7abd05254b1d219f86ec1fb21 (diff) |
Revert "fix compile on MSVC 2012 (nw)"
This reverts commit 9afc7cdb5b57f6b15125d4d207baa7c61ee50287.
Diffstat (limited to '3rdparty/sqlite3/sqlite3.h')
-rw-r--r-- | 3rdparty/sqlite3/sqlite3.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/3rdparty/sqlite3/sqlite3.h b/3rdparty/sqlite3/sqlite3.h index 352f4909fbc..c31f126dbbe 100644 --- a/3rdparty/sqlite3/sqlite3.h +++ b/3rdparty/sqlite3/sqlite3.h @@ -256,13 +256,6 @@ typedef struct sqlite3 sqlite3; typedef sqlite_int64 sqlite3_int64; typedef sqlite_uint64 sqlite3_uint64; -/* pointer-sized values */ -#ifdef PTR64 -typedef sqlite3_uint64 FPTR; -#else -typedef unsigned int FPTR; -#endif - /* ** If compiling for a processor that lacks floating point support, ** substitute integer for floating-point. @@ -4389,7 +4382,7 @@ SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(voi */ typedef void (*sqlite3_destructor_type)(void*); #define SQLITE_STATIC ((sqlite3_destructor_type)0) -#define SQLITE_TRANSIENT ((sqlite3_destructor_type)(FPTR)-1) +#define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) /* ** CAPI3REF: Setting The Result Of An SQL Function |