From 2ba3dc72f73f8e6cdd0423d02a12528096c2d90a Mon Sep 17 00:00:00 2001 From: Oliver Chang Date: Fri, 15 Apr 2016 14:47:14 -0700 Subject: Renable warning 4701 for GN (Windows). Partially reverts https://codereview.chromium.org/1885093002 R=tsepez@chromium.org TBR=tsepez@chromium.org, weili@chromium.org Review URL: https://codereview.chromium.org/1893743002 . --- BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index e27ce22992..3fb5374975 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -42,7 +42,10 @@ config("pdfium_config") { } if (is_win) { - cflags += [ "/wd4267" ] + cflags += [ + "/wd4267", + "/wd4701", + ] } if (is_clang || is_posix) { -- cgit v1.2.3