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}
This commit is contained in:
sebmarchand 2017-03-20 14:48:26 -07:00 committed by Commit bot
parent f08c3fd324
commit 2470f2ac71

View File

@ -473,6 +473,7 @@ config("toolchain") {
"/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.
]