diff options
| author | Kazu Hirata <kazu@google.com> | 2022-12-04 16:51:25 -0800 |
|---|---|---|
| committer | Kazu Hirata <kazu@google.com> | 2022-12-04 16:51:25 -0800 |
| commit | 343523d040d1ede65a35d8a6d514b0f7c198a3f2 (patch) | |
| tree | 315214eb1475196d988f6dde049cf93afd5327dc /lldb/source/Plugins/Process/Linux/IntelPTThreadTraceCollection.cpp | |
| parent | 5fa43db46ef9f05400e4fb4d9d8e5fb1781eeae5 (diff) | |
[lldb] Use std::nullopt instead of None (NFC)
This patch mechanically replaces None with std::nullopt where the
compiler would warn if None were deprecated. The intent is to reduce
the amount of manual work required in migrating from Optional to
std::optional.
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/Plugins/Process/Linux/IntelPTThreadTraceCollection.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/IntelPTThreadTraceCollection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Linux/IntelPTThreadTraceCollection.cpp b/lldb/source/Plugins/Process/Linux/IntelPTThreadTraceCollection.cpp index f2c86e347e8f..e42f6276e922 100644 --- a/lldb/source/Plugins/Process/Linux/IntelPTThreadTraceCollection.cpp +++ b/lldb/source/Plugins/Process/Linux/IntelPTThreadTraceCollection.cpp @@ -76,12 +76,12 @@ llvm::Expected<llvm::Optional<std::vector<uint8_t>>> IntelPTThreadTraceCollection::TryGetBinaryData( const TraceGetBinaryDataRequest &request) { if (!request.tid) - return None; + return std::nullopt; if (request.kind != IntelPTDataKinds::kIptTrace) - return None; + return std::nullopt; if (!TracesThread(*request.tid)) - return None; + return std::nullopt; if (Expected<IntelPTSingleBufferTrace &> trace = GetTracedThread(*request.tid)) |
