diff options
author | drh <drh@noemail.net> | 2018-08-18 18:27:18 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-08-18 18:27:18 +0000 |
commit | 38d9964a730f6dbc9730c76752686648366b439e (patch) | |
tree | af0e0cbeb44c0ee760ec7cb7988946114b9d1ab0 /src/sqliteInt.h | |
parent | 2ee001ab39593987f91849ed10efa8372585ce62 (diff) | |
download | sqlite-38d9964a730f6dbc9730c76752686648366b439e.tar.gz sqlite-38d9964a730f6dbc9730c76752686648366b439e.zip |
Additional fixes for harmless compiler warnings that are specific to this
branch.
FossilOrigin-Name: 9d8e73bf71e996b810959ffc0e60de69b5e8ca3301df52f9c35d5e9075921798
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 9158a4ca3..b74ced549 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3640,9 +3640,7 @@ int sqlite3CantopenError(int); # define sqlite3Tolower(x) tolower((unsigned char)(x)) # define sqlite3Isquote(x) ((x)=='"'||(x)=='\''||(x)=='['||(x)=='`') #endif -#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS int sqlite3IsIdChar(u8); -#endif /* ** Internal function prototypes |