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

Changes to silence compiler warnings under MSVC. (CVS 6613)

FossilOrigin-Name: df599237e1ca8b4f361477a712cf761aa1fac3df
This commit is contained in:
shane
2009-05-06 18:57:09 +00:00
parent 6a863cdad8
commit 60a4b53823
9 changed files with 36 additions and 32 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.546 2009/05/03 20:23:53 drh Exp $
** $Id: main.c,v 1.547 2009/05/06 18:57:10 shane Exp $
*/
#include "sqliteInt.h"
@@ -1193,8 +1193,9 @@ int sqlite3TempInMemory(const sqlite3 *db){
#endif
#if SQLITE_TEMP_STORE==3
return 1;
#endif
#else
return 0;
#endif
}
/*