diff options
author | mgiuca <mgiuca@chromium.org> | 2015-07-09 21:55:07 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-10 04:55:30 +0000 |
commit | 3371ccbd9d83e1031c5891520e88acbc9c1859a0 (patch) | |
tree | dcda4f07e38612362a41bd2ec272839eb0721e5a /remoting | |
parent | 43949494bc694b523633772fef2c831fb9e95439 (diff) | |
download | chromium_src-3371ccbd9d83e1031c5891520e88acbc9c1859a0.zip chromium_src-3371ccbd9d83e1031c5891520e88acbc9c1859a0.tar.gz chromium_src-3371ccbd9d83e1031c5891520e88acbc9c1859a0.tar.bz2 |
Clang on Windows: Remove -Wno-unused-variable.
Unused variables are now errors. However, since lots of third-party code
has unused variables, added a blanket suppression to all third-party
code.
BUG=505319
Review URL: https://codereview.chromium.org/1226573002
Cr-Commit-Position: refs/heads/master@{#338242}
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/remoting_host_win.gypi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/remoting/remoting_host_win.gypi b/remoting/remoting_host_win.gypi index efe2df8..78952d5 100644 --- a/remoting/remoting_host_win.gypi +++ b/remoting/remoting_host_win.gypi @@ -96,6 +96,8 @@ # Source files generated by the MIDL compiler trigger warnings with # -Wincompatible-pointer-types enabled. '-Wno-incompatible-pointer-types', + # Generated code contains unused variables. + '-Wno-unused-variable', ], }, }, # end of target 'remoting_lib_ps' |