1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Work around limitations of MSVC++ 6. Tickets #1429, #1437, and #1440. (CVS 2720)

FossilOrigin-Name: b2d1803c25b0b823c9cbe27989bacb730b18b45b
This commit is contained in:
drh
2005-09-19 12:53:18 +00:00
parent 48083cee4c
commit bbdc2b94fc
4 changed files with 16 additions and 9 deletions

View File

@@ -307,7 +307,7 @@ struct Vdbe {
u8 aborted; /* True if ROLLBACK in another VM causes an abort */
u8 expired; /* True if the VM needs to be recompiled */
int nChange; /* Number of db changes made since last reset */
u64 startTime; /* Time when query started - used for profiling */
i64 startTime; /* Time when query started - used for profiling */
};
/*