[ORC] Fix missing std::move.
This commit is contained in:
parent
48fb8ecf44
commit
0672d5d104
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue