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

Unified Diff: build/common.gypi

Issue 1781593004: Suppress new C4334 and C4595 warnings (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 | « no previous file | build/config/compiler/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index e8042fea050ca0797c35939cf401baf0b2a6604e..9c29c846ca908573e02e8294f7f053059ba71c2c 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -5711,6 +5711,11 @@
# TODO(brucedawson): http://crbug.com/554200 4312 is a VS
# 2015 64-bit warning for integer to larger pointer
4312,
+
+ # 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.
+ 4334, 4595,
],
'msvs_settings': {
'VCCLCompilerTool': {
« no previous file with comments | « no previous file | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698