Re: [Mesa-dev] [PATCH 2/2] scons: don't add -Wmissing-field-initializers

2012-01-26 Thread Marek Olšák
On Wed, Jan 25, 2012 at 2:34 PM, Jose Fonseca wrote: > - Original Message - >> The warning is absolutely useless. It doesn't actually say that there >> are >> uninitialized variables. It points out the fact that there are >> missing >> initializers and that variables are initialized to zer

Re: [Mesa-dev] [PATCH 2/2] scons: don't add -Wmissing-field-initializers

2012-01-25 Thread Jose Fonseca
- Original Message - > The warning is absolutely useless. It doesn't actually say that there > are > uninitialized variables. It points out the fact that there are > missing > initializers and that variables are initialized to zero implicitly, > which is > exactly what we want and what we c

[Mesa-dev] [PATCH 2/2] scons: don't add -Wmissing-field-initializers

2012-01-25 Thread Marek Olšák
The warning is absolutely useless. It doesn't actually say that there are uninitialized variables. It points out the fact that there are missing initializers and that variables are initialized to zero implicitly, which is exactly what we want and what we commonly make use of. C90 and C99 require a