diff options
author | Kazu Hirata <kazu@google.com> | 2023-05-06 08:56:24 -0700 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2023-05-06 08:56:24 -0700 |
commit | e6b52355a1f3eae9310003ee714c802ac8a63b46 (patch) | |
tree | 3da22bfdf08d87147aef37c39c135968d2240b17 /lldb/source/Commands/CommandObjectThread.cpp | |
parent | dd6a58babc853d180b9a7e5bd709ae12477da004 (diff) | |
download | llvm-e6b52355a1f3eae9310003ee714c802ac8a63b46.zip llvm-e6b52355a1f3eae9310003ee714c802ac8a63b46.tar.gz llvm-e6b52355a1f3eae9310003ee714c802ac8a63b46.tar.bz2 |
[lldb] Replace None with std::nullopt in comments (NFC)
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/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 052d52e..851fc74 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -2420,7 +2420,7 @@ protected: } CommandOptions m_options; - // Last traversed id used to continue a repeat command. None means + // Last traversed id used to continue a repeat command. std::nullopt means // that all the trace has been consumed. std::optional<lldb::user_id_t> m_last_id; }; |