diff options
author | drh <> | 2021-12-09 19:42:52 +0000 |
---|---|---|
committer | drh <> | 2021-12-09 19:42:52 +0000 |
commit | 5a4ac1cc302388e8717f9873fc90e5b648a74eac (patch) | |
tree | 23764810a3189b746de1d3d56ad732963ddd195d /src/sqliteInt.h | |
parent | a11c5e22b5eb32cdf2061a6c19fd7bf4d2a36e05 (diff) | |
download | sqlite-5a4ac1cc302388e8717f9873fc90e5b648a74eac.tar.gz sqlite-5a4ac1cc302388e8717f9873fc90e5b648a74eac.zip |
Remove unused code and fix comments. Final cleanup before merging.
FossilOrigin-Name: ce42039f5647b1f276acf5d9911528ecb47df1544a587def72c8cd6b2f664289
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 0104bace6..bd02e2626 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3927,7 +3927,6 @@ struct Sqlite3Config { int iOnceResetThreshold; /* When to reset OP_Once counters */ u32 szSorterRef; /* Min size in bytes to use sorter-refs */ unsigned int iPrngSeed; /* Alternative fixed seed for the PRNG */ - int iEstCountScale; /* Multiple RowCountEst() by this amount */ /* vvvv--- must be last ---vvv */ #ifdef SQLITE_DEBUG sqlite3_int64 aTune[SQLITE_NTUNE]; /* Tuning parameters */ @@ -4294,9 +4293,6 @@ void sqlite3MemSetDefault(void); void sqlite3BenignMallocHooks(void (*)(void), void (*)(void)); #endif int sqlite3HeapNearlyFull(void); -#if 0 -sqlite3_int64 sqlite3EstMemoryAvailable(void); -#endif /* ** On systems with ample stack space and that support alloca(), make |