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

Unified Diff: build/config/compiler/BUILD.gn

Issue 1779713003: Test warning suppression with VS 2015 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « build/common.gypi ('k') | build/get_landmines.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 898b25ff2e07982597603e6b9390211c718ca404..3b125c21c2472934dc470e0738aa268dfe7ada57 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -783,6 +783,12 @@ config("default_warnings") {
# C4312 is a VS 2015 64-bit warning for integer to larger pointer.
# TODO(brucedawson): fix warnings, crbug.com/554200
"/wd4312",
+
+ # TODO(brucedawson): http://crbug.com/593448 4334 is a 'suspicious
+ # shift' warning and 4595 is an 'illegal inline operator new' warning
+ # Both are new in VS 2015 Update 2 and can safely be deferred for now.
+ "/wd4334",
+ "/wd4595",
]
}
« no previous file with comments | « build/common.gypi ('k') | build/get_landmines.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698