software_keyboard: Resolve a pessimizing move warning

A std::vector created in place like this is already an rvalue and
doesn't need to be moved.
merge-requests/60/head
Lioncash 2020-08-14 09:14:52 +07:00
parent e050594706
commit 03d5a5d9de
1 changed files with 1 additions and 2 deletions

@ -122,8 +122,7 @@ void SoftwareKeyboard::ExecuteInteractive() {
switch (request) {
case Request::Calc: {
broker.PushNormalDataFromApplet(
std::make_shared<IStorage>(std::move(std::vector<u8>{1})));
broker.PushNormalDataFromApplet(std::make_shared<IStorage>(std::vector<u8>{1}));
broker.SignalStateChanged();
break;
}