mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-10 01:02:56 +03:00
Fix the build for various the OMIT-everything compile-time option. No impact
on regular builds. FossilOrigin-Name: 947805719bc8629619af5358ad50a6365c01f8d9ceabfe8e4df947696d3819b3
This commit is contained in:
@@ -1748,7 +1748,7 @@ Select *sqlite3SelectDup(sqlite3 *db, const Select *pDup, int flags){
|
||||
return pRet;
|
||||
}
|
||||
#else
|
||||
Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){
|
||||
Select *sqlite3SelectDup(sqlite3 *db, const Select *p, int flags){
|
||||
assert( p==0 );
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user