From 47ca692c8150cb39abef5737e866b91e6a105b80 Mon Sep 17 00:00:00 2001 From: weili Date: Thu, 31 Mar 2016 15:08:27 -0700 Subject: Re-enable all the windows warnings except 4267 The code is changed or had been changed to no longer generate these warnings. It is safe to re-enabled these warnings. In this code change, we fixed some code which generates warnings 4018 (signed/unsigned mismatch) and 4146 (unary minus operator applied to unsigned type, result still unsigned). Warning 4333 (right shift by too large amount, data loss) and 4345 (an object of POD type constructed with an initializer of the form () will be default-initialized) are no longer generated. The same setting is applied and verified for GN build as well. BUG=pdfium:29 Review URL: https://codereview.chromium.org/1849443003 --- pdfium.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pdfium.gyp') diff --git a/pdfium.gyp b/pdfium.gyp index 63d0c03404..ed6003ed81 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -93,7 +93,7 @@ }], ], 'msvs_disabled_warnings': [ - 4018, 4146, 4333, 4345, 4267, + 4267, ], 'variables': { 'clang_warning_flags': [ -- cgit v1.2.3