| Index: sky/engine/BUILD.gn
|
| diff --git a/sky/engine/BUILD.gn b/sky/engine/BUILD.gn
|
| index 120061999da1ed2782a88c1f927b3155ac3ce3be..4f8f0bec66464752ac2fb13b0310b8dd61cb5044 100644
|
| --- a/sky/engine/BUILD.gn
|
| +++ b/sky/engine/BUILD.gn
|
| @@ -40,8 +40,11 @@ config("config") {
|
|
|
| if (is_win) {
|
| cflags += [
|
| + "/wd4065", # Switch statement contains 'default' but no 'case' labels.
|
| + # In generated parser code.
|
| "/wd4305", # Truncation from 'type1' to 'type2'.
|
| "/wd4324", # Struct padded due to declspec(align).
|
| + "/wd4702", # Unreachable code, happens in bison-generated code.
|
| "/wd4714", # Function marked forceinline not inlined.
|
| "/wd4800", # Value forced to bool.
|
| "/wd4996", # Deprecated function call.
|
|
|