Mesa (master): scons: Silence MSVC C4351 warning.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sun Mar 22 08:23:37 UTC 2015


Module: Mesa
Branch: master
Commit: e4d95982ee36097a86c4afec3f34924964978c21
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e4d95982ee36097a86c4afec3f34924964978c21

Author: Jose Fonseca <jfonseca at vmware.com>
Date:   Thu Mar 19 22:22:26 2015 +0000

scons: Silence MSVC C4351 warning.

It warns about change in MSVC behavior -- array initialisation used to
be non-standard, but is standard now, assuming I understand correctly
http://en.cppreference.com/w/cpp/language/zero_initialization .

Reviewed-by: Brian Paul <brianp at vmware.com>

---

 scons/gallium.py |    1 +
 1 file changed, 1 insertion(+)

diff --git a/scons/gallium.py b/scons/gallium.py
index 1564970..7050412 100755
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -510,6 +510,7 @@ def generate(env):
             '/wd4056', # overflow in floating-point constant arithmetic
             '/wd4244', # conversion from 'type1' to 'type2', possible loss of data
             '/wd4305', # truncation from 'type1' to 'type2'
+            '/wd4351', # new behavior: elements of array 'array' will be default initialized
             '/wd4756', # overflow in constant arithmetic
             '/wd4800', # forcing value to bool 'true' or 'false' (performance warning)
             '/wd4996', # disable deprecated POSIX name warnings




More information about the mesa-commit mailing list