diff options
| author | 2020-11-25 23:56:17 +0000 | |
|---|---|---|
| committer | 2020-11-25 23:57:11 +0000 | |
| commit | e48e9a406caf69ca7943aac34f073260f9c46954 (patch) | |
| tree | 21b2d6aaf8de5dfd2361e13c4f811602c2fe792f | |
| parent | Merge pull request #4976 from comex/poll-events (diff) | |
| download | yuzu-e48e9a406caf69ca7943aac34f073260f9c46954.tar.gz yuzu-e48e9a406caf69ca7943aac34f073260f9c46954.tar.xz yuzu-e48e9a406caf69ca7943aac34f073260f9c46954.zip | |
input_common: ignore some Clang warnings after 5c4774e8ce1d
error: unknown warning option '-Werror=unused-but-set-parameter'; did you mean '-Werror=unused-parameter'? [-Werror,-Wunknown-warning-option]
error: unknown warning option '-Werror=unused-but-set-variable'; did you mean '-Werror=unused-const-variable'? [-Werror,-Wunknown-warning-option]
| -rw-r--r-- | src/input_common/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 1d1b2e08a..5682e5ca5 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -56,8 +56,8 @@ else() | |||
| 56 | -Werror=reorder | 56 | -Werror=reorder |
| 57 | -Werror=shadow | 57 | -Werror=shadow |
| 58 | -Werror=sign-compare | 58 | -Werror=sign-compare |
| 59 | -Werror=unused-but-set-parameter | 59 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter> |
| 60 | -Werror=unused-but-set-variable | 60 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> |
| 61 | -Werror=unused-variable | 61 | -Werror=unused-variable |
| 62 | ) | 62 | ) |
| 63 | endif() | 63 | endif() |