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

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

Issue 1858423002: Fix C4334 (32-bit shift converted to 64-bit) warnings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing obsolete comment and pointless '1' Created 4 years, 8 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') | media/filters/vp8_parser.cc » ('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 0da129f5ae5df9ee78557ac8b31537bd4bec8547..f93ff3c6be18f5001251a7c690f6c5d8edf1f457 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -792,10 +792,10 @@ config("default_warnings") {
# 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",
+ # TODO(brucedawson): http://crbug.com/593448 - C4595 is an 'illegal
+ # inline operator new' warning that is new in VS 2015 Update 2.
+ # This is equivalent to clang's no-inline-new-delete warning.
+ # See http://bugs.icu-project.org/trac/ticket/11122
"/wd4595",
]
}
« no previous file with comments | « build/common.gypi ('k') | media/filters/vp8_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698