On Sep 27, 2009, at 5:28 PM, Dr. David Kirkby wrote:
> "sqlite3.c", line 18731: warning: integer overflow detected: op "<<"
> "sqlite3.c", line 18748: warning: integer overflow detected: op "<<"
Both cases are complaining about a constant: (0x1f<<28) Both are
harmless.
> "sqlite3.c", line 32546: warning: statement not reached
Complains about this code:
/*NOTREACHED*/
assert( 0 );
Harmless.
> "sqlite3.c", line 69160: warning: integer overflow detected: op "<<"
Complains about this constant: (((sqlite3_int64)1)<<63) Harmless
All warnings are harmless and will remain unaddressed for now. Thanks
for the reports, though!
D. Richard Hipp
[email protected]
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users