From a0a6951e259bd347c133969740348bb5ebb468c4 Mon Sep 17 00:00:00 2001 From: Yves Gerey Date: Fri, 9 Nov 2018 19:35:11 +0100 Subject: Fix windows build warnings for MSVC (continued). Bug: chromium:766721 Change-Id: I27ab96eeb9e25a87ac37553a33577d79680ec32a --- BUILD.gn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index c85d2592..4fdc2938 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -70,6 +70,9 @@ config("nasm_config") { # NASM sometimes compares enums to unsigned integers. "/wd4018", # sign compare + # char VS const char mismatch. + "/wd4028", # formal parameter 1 different from declaration. + # NASM comment: Uninitialized -> all zero by C spec # Or sometimes one const struct is forward declared for no reason. "/wd4132", # const object should be initialized -- cgit v1.2.3