1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-21 09:00:59 +03:00

Fix harmless compiler warnings (unused parameter warnings) in the aggregate

query analyzer.

FossilOrigin-Name: 2d43562084316ec180a4c2cfc3fee08d58432204
This commit is contained in:
drh
2012-04-19 15:49:19 +00:00
parent 3a2d08e599
commit d5a336ef58
3 changed files with 9 additions and 7 deletions

View File

@@ -4009,6 +4009,8 @@ static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
return WRC_Continue;
}
static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){
UNUSED_PARAMETER(pWalker);
UNUSED_PARAMETER(pSelect);
return WRC_Continue;
}