Browse Source
Fix warnings in core/frontend/input.h with [[maybe_unused]]
Fixes build break due to #4927
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
src/core/frontend/input.h
|
|
|
@ -33,7 +33,9 @@ public: |
|
|
|
virtual bool GetAnalogDirectionStatus([[maybe_unused]] AnalogDirection direction) const { |
|
|
|
return {}; |
|
|
|
} |
|
|
|
virtual bool SetRumblePlay(f32 amp_low, f32 freq_low, f32 amp_high, f32 freq_high) const { |
|
|
|
virtual bool SetRumblePlay([[maybe_unused]] f32 amp_low, [[maybe_unused]] f32 freq_low, |
|
|
|
[[maybe_unused]] f32 amp_high, |
|
|
|
[[maybe_unused]] f32 freq_high) const { |
|
|
|
return {}; |
|
|
|
} |
|
|
|
}; |
|
|
|
|