Remove superfluous move

This commit is contained in:
Michał Janiszewski 2017-09-28 23:16:14 +02:00
parent b70dd97234
commit 23bfb9b306
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public:
res->Position.y = ride->overall_view.y * 32 + 16;
res->Position.z = map_element_height(res->Position.x, res->Position.y);
return std::move(res);
return res;
}
};