input_common: Add missing override specifiers

This commit is contained in:
Lioncash 2018-08-02 21:41:51 -04:00
parent 7f4c570671
commit d682d53bb2
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();