1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a bug in the detection of iOS when setting the default mmap_limit.

FossilOrigin-Name: ac1432b3a8e968be4cbc138b4a35f34187c0c36f
This commit is contained in:
drh
2013-04-03 13:38:46 +00:00
parent 34f7490311
commit 716d6d2da7
3 changed files with 8 additions and 8 deletions

View File

@@ -212,7 +212,7 @@
*/
#ifdef __APPLE__
# include <TargetConditionals.h>
# if defined(TARGET_OS_IPHONE)
# if TARGET_OS_IPHONE
# define SQLITE_DEFAULT_MMAP_LIMIT 0
# endif
#endif