Explorar o código

yuzu/applets/software_keyboard: std::move std::function instances where applicable

std::function instances can potentially allocate. std::moveing them
prevents an avoidable allocation in that case.
Lioncash %!s(int64=7) %!d(string=hai) anos
pai
achega
3fa2b218ac
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/yuzu/applets/software_keyboard.cpp

+ 2 - 2
src/yuzu/applets/software_keyboard.cpp

@@ -129,13 +129,13 @@ QtSoftwareKeyboard::~QtSoftwareKeyboard() = default;
 
 void QtSoftwareKeyboard::RequestText(std::function<void(std::optional<std::u16string>)> out,
                                      Core::Frontend::SoftwareKeyboardParameters parameters) const {
-    text_output = out;
+    text_output = std::move(out);
     emit MainWindowGetText(parameters);
 }
 
 void QtSoftwareKeyboard::SendTextCheckDialog(std::u16string error_message,
                                              std::function<void()> finished_check) const {
-    this->finished_check = finished_check;
+    this->finished_check = std::move(finished_check);
     emit MainWindowTextCheckDialog(error_message);
 }