forked from OSchip/llvm-project
[ORC] Fix missing std::move from 9eb4939b86
.
This commit is contained in:
parent
9eb4939b86
commit
f8752e28fd
|
@ -292,7 +292,7 @@ private:
|
||||||
}
|
}
|
||||||
return Error::success();
|
return Error::success();
|
||||||
}))
|
}))
|
||||||
return Err;
|
return std::move(Err);
|
||||||
|
|
||||||
LLVM_DEBUG({
|
LLVM_DEBUG({
|
||||||
dbgs() << "JITDylib init order is [ ";
|
dbgs() << "JITDylib init order is [ ";
|
||||||
|
|
Loading…
Reference in New Issue