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

Change the TEMP_STORE preprocessor symbol to SQLITE_TEMP_STORE. (CVS 5312)

FossilOrigin-Name: 1e3b8308021107d983d2152663f62b369cca091d
This commit is contained in:
danielk1977
2008-06-26 10:54:12 +00:00
parent 29bafeabcd
commit b06a0b67c4
9 changed files with 49 additions and 49 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.730 2008/06/26 08:29:34 danielk1977 Exp $
** @(#) $Id: sqliteInt.h,v 1.731 2008/06/26 10:54:12 danielk1977 Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -249,11 +249,11 @@
#endif
/*
** Provide a default value for TEMP_STORE in case it is not specified
** Provide a default value for SQLITE_TEMP_STORE in case it is not specified
** on the command-line
*/
#ifndef TEMP_STORE
# define TEMP_STORE 1
#ifndef SQLITE_TEMP_STORE
# define SQLITE_TEMP_STORE 1
#endif
/*