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:
David Blaikie 2014-07-21 16:23:21 +00:00
parent 0c466c88d4
commit d8fa9295c8

View File

@ -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) {