diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-15 06:22:01 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-22 04:50:03 -0500 |
commit | 5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a (patch) | |
tree | 4f65578a7b6cd6d5f379b177919583bcfb8e71f3 /src/input_common/sdl/sdl.h | |
parent | 3a85bc1e771b8c11728b6535710e21dc092b6732 (diff) |
input_common: Treat warnings as errors
Migrates over warnings as errors for input common to match how the
common library treats warnings as errors.
Diffstat (limited to 'src/input_common/sdl/sdl.h')
-rw-r--r-- | src/input_common/sdl/sdl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/sdl/sdl.h b/src/input_common/sdl/sdl.h index f3554be9a..42bbf14d4 100644 --- a/src/input_common/sdl/sdl.h +++ b/src/input_common/sdl/sdl.h @@ -23,7 +23,7 @@ public: /// Unregisters SDL device factories and shut them down. virtual ~State() = default; - virtual Pollers GetPollers(Polling::DeviceType type) { + virtual Pollers GetPollers(Polling::DeviceType) { return {}; } |