From 97d6571cfcd3815844f581db40f9634e81f0a8fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Mon, 23 Feb 2015 13:55:28 +0100 Subject: disabled another Visual Studio warning (nw) --- src/osd/windows/vconv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/osd/windows/vconv.c b/src/osd/windows/vconv.c index db58268618e..01d6d8307b3 100644 --- a/src/osd/windows/vconv.c +++ b/src/osd/windows/vconv.c @@ -88,6 +88,7 @@ static const translation_info gcc_translate[] = // warning C4296: 'x' : expression is always false // warning C4306: 'xxx': conversion from 'type1' to 'type2' of greater size // 64-bit only // warning C4310: cast truncates constant value + // warning C4312: 'type cast' : conversion from 'xxx' to 'xxx' of greater size // warning C4324: 'xxx' : structure was padded due to __declspec(align()) // warning C4347: behavior change: 'xxx' is called instead of 'xxx' // obsolete VS2005 - VS2010 only // warning C4435: 'xxx' : Object layout under /vd2 will change due to virtual base 'xxx' @@ -109,7 +110,7 @@ static const translation_info gcc_translate[] = // warning C4805: 'x' : unsafe mix of type 'xxx' and type 'xxx' in operation // warning C4820: 'xxx' : 'x' bytes padding added after data member 'xxx' // warning C4826: Conversion from 'type1 ' to 'type_2' is sign-extended. This may cause unexpected runtime behavior. // 32-bit only - { VS7, "-Wall", "/Wall /W4 /wd4003 /wd4018 /wd4061 /wd4100 /wd4127 /wd4131 /wd4141 /wd4146 /wd4150 /wd4189 /wd4191 /wd4201 /wd4232 /wd4242 /wd4244 /wd4250 /wd4255 /wd4296 /wd4306 /wd4310 /wd4324 /wd4347 /wd4435 /wd4510 /wd4512 /wd4514 /wd4571 /wd4610 /wd4611 /wd4619 /wd4625 /wd4626 /wd4640 /wd4668 /wd4702 /wd4706 /wd4710 /wd4711 /wd4805 /wd4820 /wd4826" }, + { VS7, "-Wall", "/Wall /W4 /wd4003 /wd4018 /wd4061 /wd4100 /wd4127 /wd4131 /wd4141 /wd4146 /wd4150 /wd4189 /wd4191 /wd4201 /wd4232 /wd4242 /wd4244 /wd4250 /wd4255 /wd4296 /wd4306 /wd4310 /wd4312 /wd4324 /wd4347 /wd4435 /wd4510 /wd4512 /wd4514 /wd4571 /wd4610 /wd4611 /wd4619 /wd4625 /wd4626 /wd4640 /wd4668 /wd4702 /wd4706 /wd4710 /wd4711 /wd4805 /wd4820 /wd4826" }, { 0, "-Wall", "/W0" }, { VS7, "-Wno-unused", "/wd4100 /wd4101 /wd4102 /wd4505" }, { 0, "-Wno-sign-compare", "/wd4365 /wd4389 /wd4245 /wd4388" }, -- cgit v1.2.3