diff options
author | Chris Robinson <[email protected]> | 2023-11-25 18:58:00 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-11-25 18:58:00 -0800 |
commit | 2a27a2ca5ea0f6b6b8fff065212959ea60021647 (patch) | |
tree | 0eaa72a89e008f8cc52ca34e9c0a81ae3c601d9c /alc/backends/base.h | |
parent | 889f2daf1f0453fbbebc7ebba74c58584a335043 (diff) |
Fix some unused parameter and unhandled enum warnings
Diffstat (limited to 'alc/backends/base.h')
-rw-r--r-- | alc/backends/base.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/alc/backends/base.h b/alc/backends/base.h index ea3b57a3..eea0d238 100644 --- a/alc/backends/base.h +++ b/alc/backends/base.h @@ -80,9 +80,8 @@ struct BackendFactory { virtual bool querySupport(BackendType type) = 0; - virtual alc::EventSupport queryEventSupport(alc::EventType eventType, BackendType type) { - return alc::EventSupport::NoSupport; - } + virtual alc::EventSupport queryEventSupport(alc::EventType, BackendType) + { return alc::EventSupport::NoSupport; } virtual std::string probe(BackendType type) = 0; |