We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5fef9b commit 80767a2Copy full SHA for 80767a2
lld/MachO/InputFiles.cpp
@@ -218,7 +218,7 @@ std::optional<MemoryBufferRef> macho::readFile(StringRef path) {
218
return entry->second;
219
220
ErrorOr<std::unique_ptr<MemoryBuffer>> mbOrErr =
221
- MemoryBuffer::getFile(path, false, /*RequiresNullTerminator*/ false);
+ MemoryBuffer::getFile(path, false, /*RequiresNullTerminator=*/false);
222
if (std::error_code ec = mbOrErr.getError()) {
223
error("cannot open " + path + ": " + ec.message());
224
return std::nullopt;
0 commit comments