Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Unified Diff: Source/core/BUILD.gn

Issue 383153007: Fixes for re-enabling more MSVC level 4 warnings: Source/core/ edition (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Delete temp file Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/accessibility/AXObject.cpp » ('j') | Source/core/accessibility/AXObject.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/BUILD.gn
diff --git a/Source/core/BUILD.gn b/Source/core/BUILD.gn
index 3bb3c187f5eaea78b75b420830fff565a69e354b..d7f36969700b7df9bc8241a949fab0a4ffe64153 100644
--- a/Source/core/BUILD.gn
+++ b/Source/core/BUILD.gn
@@ -473,10 +473,11 @@ source_set("core_generated") {
cflags += [
# In generated bindings code: "switch contains default but no case".
# Disable c4267 warnings until we fix size_t to int truncations.
- # 4702 is disabled because of issues in Bison-generated
+ # 4701 and 4702 are disabled because of issues in Bison-generated
# XPathGrammar.cpp and CSSGrammar.cpp.
"/wd4065",
"/wd4267",
+ "/wd4701",
"/wd4702",
]
}
« no previous file with comments | « no previous file | Source/core/accessibility/AXObject.cpp » ('j') | Source/core/accessibility/AXObject.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698