Commit 2470f2ac authored by sebmarchand's avatar sebmarchand Committed by Commit bot

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}
parent f08c3fd3
......@@ -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.
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment