summaryrefslogtreecommitdiffstats
path: root/scons
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2015-03-20 12:01:23 +0000
committerJose Fonseca <jfonseca@vmware.com>2015-03-22 08:23:24 +0000
commit06ac7178108ff8eb6e3eae103a302d79f0972d1a (patch)
treec025c7320c1a93090eb9ecb70e1c304906fd88f8 /scons
parent15c5595bb144d8018ebd922c6914772958cbf2b2 (diff)
downloadexternal_mesa3d-06ac7178108ff8eb6e3eae103a302d79f0972d1a.zip
external_mesa3d-06ac7178108ff8eb6e3eae103a302d79f0972d1a.tar.gz
external_mesa3d-06ac7178108ff8eb6e3eae103a302d79f0972d1a.tar.bz2
scons: Silence conversion from 'size_t' to 'type', possible loss of data on MSVC.
Most cases seem harmless, though that might not always be the case. Maybe one day we can get gcc to complain about these and fix them throughout the code, but until then let's silence them. Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'scons')
-rwxr-xr-xscons/gallium.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index b4df145..efc65e7 100755
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -509,6 +509,7 @@ def generate(env):
'/wd4018', # signed/unsigned mismatch
'/wd4056', # overflow in floating-point constant arithmetic
'/wd4244', # conversion from 'type1' to 'type2', possible loss of data
+ '/wd4267', # 'var' : conversion from 'size_t' to 'type', 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