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

Suppress harmless compiler warning.

FossilOrigin-Name: 3f8c068a41b01f59d7f5d56f3bced78587f4d26c
This commit is contained in:
drh
2010-08-17 19:40:08 +00:00
parent c8d735aed3
commit 43b18e1e55
5 changed files with 35 additions and 24 deletions

View File

@@ -503,6 +503,7 @@ void sqlite3DeleteIndexSamples(sqlite3 *db, Index *pIdx){
sqlite3DbFree(db, pIdx->aSample);
}
#else
UNUSED_PARAMETER(db);
UNUSED_PARAMETER(pIdx);
#endif
}