mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Remove unnecessary use of unique_ptr::release() used to construct another unique_ptr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213556 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0c466c88d4
commit
d8fa9295c8
@ -181,8 +181,7 @@ Archive::Child::getAsBinary(LLVMContext *Context) const {
|
||||
if (std::error_code EC = BuffOrErr.getError())
|
||||
return EC;
|
||||
|
||||
std::unique_ptr<MemoryBuffer> Buff(BuffOrErr.get().release());
|
||||
return createBinary(Buff, Context);
|
||||
return createBinary(*BuffOrErr, Context);
|
||||
}
|
||||
|
||||
ErrorOr<Archive *> Archive::create(std::unique_ptr<MemoryBuffer> Source) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user