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

Fix a harmless compiler warning that comes up when using SQLITE_DEBUG in

separate compilation mode.

FossilOrigin-Name: 52e0f8cab9852538da0778d5f57dd85b0774e764157692111a007aecd963f10a
This commit is contained in:
drh
2024-12-13 01:29:22 +00:00
parent 35d302ccb1
commit 9ee02515c4
4 changed files with 9 additions and 10 deletions

View File

@@ -4270,7 +4270,6 @@ int sqlite3_test_control(int op, ...){
/* Invoke these debugging routines so that the compiler does not
** issue "defined but not used" warnings. */
if( x==9999 ){
sqlite3ShowExpr(0);
sqlite3ShowExpr(0);
sqlite3ShowExprList(0);
sqlite3ShowIdList(0);
@@ -4288,7 +4287,6 @@ int sqlite3_test_control(int op, ...){
sqlite3ShowWinFunc(0);
#endif
sqlite3ShowSelect(0);
sqlite3ShowWhereTerm(0);
}
#endif
break;