Remove unnecessary moves in return statements

This commit is contained in:
Cameron Gutman
2023-05-11 01:15:19 -05:00
parent ff046bb707
commit 0fa406dbb7
5 changed files with 6 additions and 7 deletions

View File

@@ -1498,7 +1498,7 @@ namespace video {
encode_session.session = std::move(*session);
return std::move(encode_session);
return encode_session;
}
encode_e