From f47544a1b7b444b7abd05254b1d219f86ec1fb21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Sat, 31 Jan 2015 23:34:21 +0100 Subject: vconv: disabled C4826 again (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 e8bc4626c41..05041037400 100644 --- a/src/osd/windows/vconv.c +++ b/src/osd/windows/vconv.c @@ -103,7 +103,8 @@ static const translation_info gcc_translate[] = // warning C4711: function 'xxx' selected for automatic inline expansion // optimized only // warning C4805: 'x' : unsafe mix of type 'xxx' and type 'xxx' in operation // warning C4820: 'xxx' : 'x' bytes padding added after data member 'xxx' - { VS7, "-Wall", "/Wall /W4 /wd4003 /wd4018 /wd4061 /wd4100 /wd4127 /wd4131 /wd4141 /wd4146 /wd4150 /wd4189 /wd4201 /wd4242 /wd4244 /wd4250 /wd4255 /wd4296 /wd4310 /wd4324 /wd4347 /wd4435 /wd4510 /wd4512 /wd4514 /wd4571 /wd4610 /wd4619 /wd4625 /wd4626 /wd4668 /wd4702 /wd4706 /wd4710 /wd4711 /wd4805 /wd4820" }, + // 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 /wd4201 /wd4242 /wd4244 /wd4250 /wd4255 /wd4296 /wd4310 /wd4324 /wd4347 /wd4435 /wd4510 /wd4512 /wd4514 /wd4571 /wd4610 /wd4619 /wd4625 /wd4626 /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