diff options
Diffstat (limited to 'src/mem2.c')
-rw-r--r-- | src/mem2.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mem2.c b/src/mem2.c index 0815a55ac..643f78955 100644 --- a/src/mem2.c +++ b/src/mem2.c @@ -12,7 +12,7 @@ ** This file contains the C functions that implement a memory ** allocation subsystem for use by SQLite. ** -** $Id: mem2.c,v 1.16 2007/10/19 17:47:25 drh Exp $ +** $Id: mem2.c,v 1.17 2007/11/05 17:54:17 drh Exp $ */ /* @@ -20,8 +20,7 @@ ** SQLITE_MEMDEBUG macro is defined and SQLITE_OMIT_MEMORY_ALLOCATION ** is not defined. */ -#if defined(SQLITE_MEMDEBUG) && !defined(SQLITE_OMIT_MEMORY_ALLOCATION) \ - && !defined(SQLITE_MEMORY_SIZE) +#if defined(SQLITE_MEMDEBUG) && !defined(SQLITE_MEMORY_SIZE) /* ** We will eventually construct multiple memory allocation subsystems |