[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>(
|
return make_error<StringError>(
|
||||||
"Error serializing arguments to blob in call",
|
"Error serializing arguments to blob in call",
|
||||||
inconvertibleErrorCode());
|
inconvertibleErrorCode());
|
||||||
return Result;
|
return std::move(Result);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename RetT> class WrapperFunctionHandlerCaller {
|
template <typename RetT> class WrapperFunctionHandlerCaller {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue