diff options
| author | 2022-05-26 21:26:54 -0400 | |
|---|---|---|
| committer | 2022-06-13 18:19:23 -0400 | |
| commit | 8671aa8dd00f7408193df8835af8043706c64fcb (patch) | |
| tree | d36e6c486e8c8d6f16db30f9d1819f1c544dbcc3 /src | |
| parent | CMakeLists: Make variable shadowing a compile-time error (diff) | |
| download | yuzu-8671aa8dd00f7408193df8835af8043706c64fcb.tar.gz yuzu-8671aa8dd00f7408193df8835af8043706c64fcb.tar.xz yuzu-8671aa8dd00f7408193df8835af8043706c64fcb.zip | |
audio_core: Remove -Werror=unused-parameter
Removing this as we don't enforce unused parameter warnings elsewhere in the project, and explicitly specify -Wno-unused-parameter in the main CMakeLists.
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio_core/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt index 75ae085ea..89575a53e 100644 --- a/src/audio_core/CMakeLists.txt +++ b/src/audio_core/CMakeLists.txt | |||
| @@ -49,7 +49,6 @@ if (NOT MSVC) | |||
| 49 | target_compile_options(audio_core PRIVATE | 49 | target_compile_options(audio_core PRIVATE |
| 50 | -Werror=conversion | 50 | -Werror=conversion |
| 51 | -Werror=ignored-qualifiers | 51 | -Werror=ignored-qualifiers |
| 52 | -Werror=unused-parameter | ||
| 53 | 52 | ||
| 54 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter> | 53 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter> |
| 55 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> | 54 | $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> |