diff options
| author | 2020-12-02 23:08:43 -0800 | |
|---|---|---|
| committer | 2020-12-02 23:08:43 -0800 | |
| commit | 88089c87546b62536a27738f5ee03dff52fa76e9 (patch) | |
| tree | 5221c80d0ac3e7bbdb0c342098378e6c84951658 /src/audio_core/sink_context.cpp | |
| parent | Merge pull request #5002 from ameerj/nvdec-frameskip (diff) | |
| parent | audio_core: Make shadowing and unused parameters errors (diff) | |
| download | yuzu-88089c87546b62536a27738f5ee03dff52fa76e9.tar.gz yuzu-88089c87546b62536a27738f5ee03dff52fa76e9.tar.xz yuzu-88089c87546b62536a27738f5ee03dff52fa76e9.zip | |
Merge pull request #5000 from lioncash/audio-error
audio_core: Make shadowing and unused parameters errors
Diffstat (limited to 'src/audio_core/sink_context.cpp')
| -rw-r--r-- | src/audio_core/sink_context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/sink_context.cpp b/src/audio_core/sink_context.cpp index b29b47890..a69543696 100644 --- a/src/audio_core/sink_context.cpp +++ b/src/audio_core/sink_context.cpp | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #include "audio_core/sink_context.h" | 5 | #include "audio_core/sink_context.h" |
| 6 | 6 | ||
| 7 | namespace AudioCore { | 7 | namespace AudioCore { |
| 8 | SinkContext::SinkContext(std::size_t sink_count) : sink_count(sink_count) {} | 8 | SinkContext::SinkContext(std::size_t sink_count_) : sink_count{sink_count_} {} |
| 9 | SinkContext::~SinkContext() = default; | 9 | SinkContext::~SinkContext() = default; |
| 10 | 10 | ||
| 11 | std::size_t SinkContext::GetCount() const { | 11 | std::size_t SinkContext::GetCount() const { |