diff options
author | drh <drh@noemail.net> | 2007-11-05 17:54:17 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-11-05 17:54:17 +0000 |
commit | d64621d68d085b7b40813df14b406ec2c7cf08ba (patch) | |
tree | 66f51020f2c9b7f0de7a8e110a71619959505fa7 /src/mem1.c | |
parent | 7eb42c8204ba4ddc0e40178bbff7f76e8986232e (diff) | |
download | sqlite-d64621d68d085b7b40813df14b406ec2c7cf08ba.tar.gz sqlite-d64621d68d085b7b40813df14b406ec2c7cf08ba.zip |
Drop support for the SQLITE_OMIT_MEMORY_ALLOCATION compile-time option. (CVS 4529)
FossilOrigin-Name: b57c89fed0b74c2e8fb68ccfdf5e5e7d4b2603a1
Diffstat (limited to 'src/mem1.c')
-rw-r--r-- | src/mem1.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mem1.c b/src/mem1.c index cfd29aa4e..9b221743c 100644 --- a/src/mem1.c +++ b/src/mem1.c @@ -12,7 +12,7 @@ ** This file contains the C functions that implement a memory ** allocation subsystem for use by SQLite. ** -** $Id: mem1.c,v 1.12 2007/10/19 17:47:25 drh Exp $ +** $Id: mem1.c,v 1.13 2007/11/05 17:54:17 drh Exp $ */ /* @@ -20,8 +20,7 @@ ** used when no other memory allocator is specified using compile-time ** macros. */ -#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 |