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

Unified Diff: remoting/remoting_host_win.gypi

Issue 1226583002: clang/win: Build chromium code without -Wno-incompatible-pointer-types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-logical-op-parentheses
Patch Set: rebase Created 5 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
Index: remoting/remoting_host_win.gypi
diff --git a/remoting/remoting_host_win.gypi b/remoting/remoting_host_win.gypi
index b6213260b476890651a4336008634956e4c06382..efe2df85a019605722aff65acc5e0a514f3b793c 100644
--- a/remoting/remoting_host_win.gypi
+++ b/remoting/remoting_host_win.gypi
@@ -93,6 +93,9 @@
'clang_warning_flags': [
# MIDL generated code has a habit of omitting optional braces.
'-Wno-missing-braces',
+ # Source files generated by the MIDL compiler trigger warnings with
+ # -Wincompatible-pointer-types enabled.
+ '-Wno-incompatible-pointer-types',
],
},
}, # end of target 'remoting_lib_ps'

Powered by Google App Engine
This is Rietveld 408576698