diff options
author | stephan <stephan@noemail.net> | 2025-05-31 09:44:00 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-05-31 09:44:00 +0000 |
commit | b504aab848cb6f2c09cc227d0507db17d9af7dc4 (patch) | |
tree | 6f104eb2453ac12ccbced2fceb10adf397e0ef61 /src/select.c | |
parent | d930d7ef14b2449bd9d8c18ed6aaf8a27a9f16d9 (diff) | |
download | sqlite-b504aab848cb6f2c09cc227d0507db17d9af7dc4.tar.gz sqlite-b504aab848cb6f2c09cc227d0507db17d9af7dc4.zip |
Add some missing UNUSED_PARAMETER() annotations to squelch downstream build warnings when using -Wextra -pedantic.
FossilOrigin-Name: a98a2f49355ec39c56e571c70d377675b1bd99a6d43cf9217b0eb1e081895d8e
Diffstat (limited to 'src/select.c')
-rw-r--r-- | src/select.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/select.c b/src/select.c index 81cb1184e..a8af934e4 100644 --- a/src/select.c +++ b/src/select.c @@ -2110,6 +2110,10 @@ static void generateColumnTypes( #endif sqlite3VdbeSetColName(v, i, COLNAME_DECLTYPE, zType, SQLITE_TRANSIENT); } +#else + UNUSED_PARAMETER(pParse); + UNUSED_PARAMETER(pTabList); + UNUSED_PARAMETER(pEList); #endif /* !defined(SQLITE_OMIT_DECLTYPE) */ } |