[ORC] Fix missing std::move.

This commit is contained in:
Lang Hames 2021-06-15 21:42:58 +10:00
parent 48fb8ecf44
commit 0672d5d104
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ serializeViaSPSToWrapperFunctionResult(const ArgTs &...Args) {
return make_error<StringError>(
"Error serializing arguments to blob in call",
inconvertibleErrorCode());
return Result;
return std::move(Result);
}
template <typename RetT> class WrapperFunctionHandlerCaller {