Hi,

3.6.23.1's amalgamated sqlite.h include a prototype for sqlite3_key() if
SQLITE_HAS_CODEC is defined.

This test is currently done with "#if SQLITE_HAS_CODEC", which triggers a
warning from gcc -Wundef if this macro isn't declared via a precompiled
header/command line flag/etc.

Most of the other macro tests are done with #ifdef, so could this macro be
tested with #ifdef or use 'defined(SQLITE_HAS_CODEC) && SQLITE_HAS_CODEC'
for this test? Thanks.


-dair
___________________________________________________
d...@refnum.com              http://www.refnum.com/


_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to