From 8ff2683ae80b6a4d6ffd12833f5093062ab40f69 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 28 Jul 2014 12:12:14 +0800 Subject: [PATCH] Ignore warning 4189 on Windows. The warning comes from mojo/public/cpp/system/core.h. --- brightray/brightray.gypi | 1 + 1 file changed, 1 insertion(+) diff --git a/brightray/brightray.gypi b/brightray/brightray.gypi index 08ed02d4ff..c155782c7d 100644 --- a/brightray/brightray.gypi +++ b/brightray/brightray.gypi @@ -259,6 +259,7 @@ 'msvs_disabled_warnings': [ 4100, # unreferenced formal parameter 4127, # conditional expression is constant + 4189, # local variable is initialized but not referenced 4244, # 'initializing' : conversion from 'double' to 'size_t', possible loss of data 4245, # 'initializing' : conversion from 'int' to 'const net::QuicVersionTag', signed/unsigned mismatch 4251, # class 'std::xx' needs to have dll-interface.