diff options
author | mistachkin <mistachkin@noemail.net> | 2015-01-12 18:02:52 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2015-01-12 18:02:52 +0000 |
commit | 2318d3387d4c0886e94a5bc7804bc8b03439ed1b (patch) | |
tree | 37f2939be612883182b0225435fb1d72d29cd690 /src/sqliteInt.h | |
parent | 1a803843ce553f912b6ed4d3e2422f75a045b525 (diff) | |
download | sqlite-2318d3387d4c0886e94a5bc7804bc8b03439ed1b.tar.gz sqlite-2318d3387d4c0886e94a5bc7804bc8b03439ed1b.zip |
Work in progress on fixing harmless compiler warnings when using -W4 and MSVC.
FossilOrigin-Name: 856dd245ce037f93d5ae2ddeb4fdf949c1e5c8e9
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 0a1948fef..3c591ca1c 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -16,6 +16,14 @@ #define _SQLITEINT_H_ /* +** Include the header file used to customize the compiler options for MSVC. +** This should be done first so that it can successfully prevent spurious +** compiler warnings due to subsequent content in this file and other files +** that are included by this file. +*/ +#include "msvc.h" + +/* ** These #defines should enable >2GB file support on POSIX if the ** underlying operating system supports it. If the OS lacks ** large file support, or if the OS is windows, these should be no-ops. |