input_common/keyboard: Remove redundant move

Named return value optimization automatically applies here.
master
MerryMage 2020-06-19 14:29:36 +07:00
parent 7236393114
commit 8272f53cf9
1 changed files with 1 additions and 1 deletions

@ -76,7 +76,7 @@ std::unique_ptr<Input::ButtonDevice> Keyboard::Create(const Common::ParamPackage
int key_code = params.Get("code", 0);
std::unique_ptr<KeyButton> button = std::make_unique<KeyButton>(key_button_list);
key_button_list->AddKeyButton(key_code, button.get());
return std::move(button);
return button;
}
void Keyboard::PressKey(int key_code) {