"Cory Nelson" <[EMAIL PROTECTED]> wrote: > > To get back on track: Brannon, submit a patch. An alarmingly high > number of people believe those warnings are superfluous and from what > I understand drh is one of them, so I imagine a patch is the only way > proper casting will be put in. >
Even a patch is unlikely to result in a change. I disapprove of cluttering up source code with lots of explicit casts that serve no perpose other than silencing superfluous compiler warnings. Explicit casts clutter the code making subsequent changes more difficult and masking real errors. If you do not care to see the warnings, there is probably some way to turn them off in your compiler. The code quality of SQLite is maintained by full-coverage testing, which is a far superior method of finding errors than looking at compiler warnings. -- D. Richard Hipp <[EMAIL PROTECTED]>