diff options
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index 92491a0..39e84ff 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -4970,7 +4970,7 @@ MachOObjectFile::getChainedFixupsLoadCommand() const { *DyldChainedFixupsOrErr; // If the load command is present but the data offset has been zeroed out, - // as is the case for dylib stubs, return None (no error). + // as is the case for dylib stubs, return std::nullopt (no error). if (!DyldChainedFixups.dataoff) return std::nullopt; return DyldChainedFixups; |