diff options
| author | Kazu Hirata <kazu@google.com> | 2023-01-07 14:18:35 -0800 |
|---|---|---|
| committer | Kazu Hirata <kazu@google.com> | 2023-01-07 14:18:35 -0800 |
| commit | 2fe8327406050d2585d2ced910a678e28caefcf5 (patch) | |
| tree | da95c78fa33c17cf7829bbe6f5e0bfa62e0579ae /lldb/source/Core/ValueObjectConstResult.cpp | |
| parent | f190ce625ab0dc5a5e2b2515e6d26debb34843ab (diff) | |
[lldb] Use std::optional instead of llvm::Optional (NFC)
This patch replaces (llvm::|)Optional< with std::optional<. I'll post
a separate patch to clean up the "using" declarations, #include
"llvm/ADT/Optional.h", etc.
This is part of an effort to migrate from llvm::Optional to
std::optional:
https://discourse.llvm.org/t/deprecating-llvm-optional-x-hasvalue-getvalue-getvalueor/63716
Diffstat (limited to 'lldb/source/Core/ValueObjectConstResult.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObjectConstResult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObjectConstResult.cpp b/lldb/source/Core/ValueObjectConstResult.cpp index 942ceb21d443..640abdddfcad 100644 --- a/lldb/source/Core/ValueObjectConstResult.cpp +++ b/lldb/source/Core/ValueObjectConstResult.cpp @@ -204,7 +204,7 @@ lldb::ValueType ValueObjectConstResult::GetValueType() const { return eValueTypeConstResult; } -llvm::Optional<uint64_t> ValueObjectConstResult::GetByteSize() { +std::optional<uint64_t> ValueObjectConstResult::GetByteSize() { ExecutionContext exe_ctx(GetExecutionContextRef()); if (!m_byte_size) { if (auto size = |
