Skip to content

Commit f5fef9b

Browse files
johnno1962jh7370
andauthored
Format llvm/lib/Object/Archive.cpp
Co-authored-by: James Henderson <[email protected]>
1 parent 1b9b139 commit f5fef9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Object/Archive.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ Expected<StringRef> Archive::Child::getBuffer() const {
585585
return FullNameOrErr.takeError();
586586
const std::string &FullName = *FullNameOrErr;
587587
ErrorOr<std::unique_ptr<MemoryBuffer>> Buf =
588-
MemoryBuffer::getFile(FullName, false, /*RequiresNullTerminator*/ false);
588+
MemoryBuffer::getFile(FullName, false, /*RequiresNullTerminator=*/false);
589589
if (std::error_code EC = Buf.getError())
590590
return errorCodeToError(EC);
591591
Parent->ThinBuffers.push_back(std::move(*Buf));

0 commit comments

Comments
 (0)