Просмотр исходного кода

input_common/keyboard: Remove redundant move

Named return value optimization automatically applies here.
MerryMage 6 лет назад
Родитель
Сommit
8272f53cf9
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/input_common/keyboard.cpp

+ 1 - 1
src/input_common/keyboard.cpp

@@ -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) {