Joe Mucchiello wrote:
> if VS13 is a supported compiler. Then whatever it reports as an error
> should be fixed.

This is not an error but a warning.

You have set a compiler option to treat all warnings as errors.
Remove it.

> It does not hurt to initialize the variable since I'm sure those other
> "better" compilers will optimize the initialization out.

This is not about performance (although needless slowdowns are bad).

It _does_ hurt when some change introduces code that actually uses an
uninitialized variable, and this superfluous initialization prevents the
compiler from reporting it.


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

Reply via email to