1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix compiler warnings.

FossilOrigin-Name: 6c4f1d5c24522d1f541a2b96b229ad0374f99c19
This commit is contained in:
drh
2010-11-18 13:47:50 +00:00
parent e5a8a1df0d
commit 437261d077
5 changed files with 13 additions and 59 deletions

View File

@ -2649,16 +2649,6 @@ static int newRowid(Rtree *pRtree, i64 *piRowid){
return rc;
}
#ifndef NDEBUG
static int hashIsEmpty(Rtree *pRtree){
int ii;
for(ii=0; ii<HASHSIZE; ii++){
assert( !pRtree->aHash[ii] );
}
return 1;
}
#endif
/*
** The xUpdate method for rtree module virtual tables.
*/