Disable the 'Function marked forceinline not inlined.' warning on Win.

This used to be disabled implicitly and started to broke after some
refactoring in https://codereview.chromium.org/2758563002

BUG=chromium:703027

Review-Url: https://codereview.chromium.org/2758423002
Cr-Commit-Position: refs/heads/master@{#43958}
diff --git a/BUILD.gn b/BUILD.gn
index 1f5b4af..335bf7e 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -473,6 +473,7 @@
       "/wd4702",  # Unreachable code.
       "/wd4703",  # Potentially uninitialized local pointer variable.
       "/wd4709",  # Comma operator within array index expr (bugged).
+      "/wd4714",  # Function marked forceinline not inlined.
       "/wd4718",  # Recursive call has no side-effect.
       "/wd4800",  # Forcing value to bool.
     ]