aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2023-05-06 08:56:24 -0700
committerKazu Hirata <kazu@google.com>2023-05-06 08:56:24 -0700
commite6b52355a1f3eae9310003ee714c802ac8a63b46 (patch)
tree3da22bfdf08d87147aef37c39c135968d2240b17 /lldb/source/Commands/CommandObjectThread.cpp
parentdd6a58babc853d180b9a7e5bd709ae12477da004 (diff)
downloadllvm-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.cpp2
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;
};