1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Change all legacy instances of "#if SQLITE_DEBUG" to "#ifdef SQLITE_DEBUG" for

consistency.

FossilOrigin-Name: 670f10b24230863688270d12ac519609ade2302b
This commit is contained in:
drh
2017-02-13 13:35:55 +00:00
parent 30a5831c45
commit d879e3eb8d
9 changed files with 23 additions and 24 deletions

View File

@@ -4776,7 +4776,7 @@ static int moveToChild(BtCursor *pCur, u32 newPgno){
pCur, pCur->curPagerFlags);
}
#if SQLITE_DEBUG
#ifdef SQLITE_DEBUG
/*
** Page pParent is an internal (non-leaf) tree page. This function
** asserts that page number iChild is the left-child if the iIdx'th
@@ -6163,7 +6163,7 @@ static int fillInCell(
** Use a call to btreeParseCellPtr() to verify that the values above
** were computed correctly.
*/
#if SQLITE_DEBUG
#ifdef SQLITE_DEBUG
{
CellInfo info;
pPage->xParseCell(pPage, pCell, &info);