This is about the warning discussed here: http://sqlite.org:8080/cgi-bin/mailman/private/sqlite-users/2012-January/036221.html
It is not a warning from Clang's analyzer. It's just a standard warning. Since I like to treat warnings as errors in all my projects, I can't currently build 3.7.10. I'm not sure what is best practice for resolving warnings like this, but casting resolves the warning: Replace: mask = (sizeof(long)==8) ? LARGEST_INT64 : 0x7fffffff; with: mask = (sizeof(long)==8) ? (long)LARGEST_INT64 : 0x7fffffff; Kevin _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users