diff options
author | bunnei <bunneidev@gmail.com> | 2021-07-13 07:11:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 07:11:39 +0200 |
commit | af79911017b90d091c23cb5024c96c5ca436c491 (patch) | |
tree | 14c01f428bbbe249740cd904bb67b285e756c533 /src | |
parent | Merge pull request #6615 from ReinUsesLisp/httplib-debug-warnings (diff) | |
parent | input_common: Fix build with sdl disabled (diff) | |
download | yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.gz yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.bz2 yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.lz yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.xz yuzu-af79911017b90d091c23cb5024c96c5ca436c491.tar.zst yuzu-af79911017b90d091c23cb5024c96c5ca436c491.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/input_common/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp index 7399c3648..8de3d4520 100644 --- a/src/input_common/main.cpp +++ b/src/input_common/main.cpp @@ -294,8 +294,8 @@ void InputSubsystem::ReloadInputDevices() { impl->udp->ReloadSockets(); } -std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers( - Polling::DeviceType type) const { +std::vector<std::unique_ptr<Polling::DevicePoller>> InputSubsystem::GetPollers([ + [maybe_unused]] Polling::DeviceType type) const { #ifdef HAVE_SDL2 return impl->sdl->GetPollers(type); #else |