diff options
| author | 2018-08-02 21:41:51 -0400 | |
|---|---|---|
| committer | 2018-08-02 21:44:25 -0400 | |
| commit | 29b6afb82f39a9f21389e2d9ee65ff6cdd909db8 (patch) | |
| tree | 7ead7d2f209cac64066d5c91aed3721dd595b9e2 /src/input_common/keyboard.cpp | |
| parent | Merge pull request #896 from lioncash/audio-out (diff) | |
| download | yuzu-29b6afb82f39a9f21389e2d9ee65ff6cdd909db8.tar.gz yuzu-29b6afb82f39a9f21389e2d9ee65ff6cdd909db8.tar.xz yuzu-29b6afb82f39a9f21389e2d9ee65ff6cdd909db8.zip | |
input_common: Add missing override specifiers
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/keyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/keyboard.cpp b/src/input_common/keyboard.cpp index 0f0d10f23..0410ff328 100644 --- a/src/input_common/keyboard.cpp +++ b/src/input_common/keyboard.cpp | |||
| @@ -14,7 +14,7 @@ public: | |||
| 14 | explicit KeyButton(std::shared_ptr<KeyButtonList> key_button_list_) | 14 | explicit KeyButton(std::shared_ptr<KeyButtonList> key_button_list_) |
| 15 | : key_button_list(key_button_list_) {} | 15 | : key_button_list(key_button_list_) {} |
| 16 | 16 | ||
| 17 | ~KeyButton(); | 17 | ~KeyButton() override; |
| 18 | 18 | ||
| 19 | bool GetStatus() const override { | 19 | bool GetStatus() const override { |
| 20 | return status.load(); | 20 | return status.load(); |