mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[ORC] Fix missing std::move.
This commit is contained in:
parent
0c8cd2ec6f
commit
792e37b227
@ -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
Block a user