diff options
author | drh <drh@noemail.net> | 2011-10-19 17:13:08 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-10-19 17:13:08 +0000 |
commit | d76b64e1c646c5bf463b6bf8e53741cfec301ed0 (patch) | |
tree | 6a085c662317e7385434cbdab682ab6a864738da /src | |
parent | e459b07601351800e3a7166de88070a40ce12990 (diff) | |
download | sqlite-d76b64e1c646c5bf463b6bf8e53741cfec301ed0.tar.gz sqlite-d76b64e1c646c5bf463b6bf8e53741cfec301ed0.zip |
Fix comments on SQLITE_CONFIG_HEAP so that they do not interfere with the
requirements scanner.
FossilOrigin-Name: a3151ce15c256219646013d695b6e162e306cef8
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 833d9c5ce..32769c582 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -1399,8 +1399,8 @@ struct sqlite3_mem_methods { ** allocator is engaged to handle all of SQLites memory allocation needs. ** The first pointer (the memory pointer) must be aligned to an 8-byte ** boundary or subsequent behavior of SQLite will be undefined. -** The minimum allocation size is capped at 2^12. Reasonable values -** for the minimum allocation size are 2^5 through 2^8.</dd> +** The minimum allocation size is capped at 2**12. Reasonable values +** for the minimum allocation size are 2**5 through 2**8.</dd> ** ** [[SQLITE_CONFIG_MUTEX]] <dt>SQLITE_CONFIG_MUTEX</dt> ** <dd> ^(This option takes a single argument which is a pointer to an |