input_common: Add missing override specifiers

This commit is contained in:
Lioncash 2018-08-02 21:41:51 -04:00
parent a03c644aed
commit 29b6afb82f
3 changed files with 2 additions and 14 deletions

View file

@ -14,7 +14,7 @@ public:
explicit KeyButton(std::shared_ptr<KeyButtonList> key_button_list_)
: key_button_list(key_button_list_) {}
~KeyButton();
~KeyButton() override;
bool GetStatus() const override {
return status.load();