We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 088a1dd commit 01965b3Copy full SHA for 01965b3
lldb/tools/lldb-dap/Protocol/DAPTypes.h
@@ -66,10 +66,10 @@ struct Symbol {
66
lldb::SymbolType type = lldb::eSymbolTypeInvalid;
67
68
/// The symbol file address.
69
- lldb::addr_t fileAddress = 0;
+ lldb::addr_t fileAddress = LLDB_INVALID_ADDRESS;
70
71
/// The symbol load address.
72
- std::optional<lldb::addr_t> loadAddress = std::nullopt;
+ std::optional<lldb::addr_t> loadAddress;
73
74
/// The symbol size.
75
lldb::addr_t size = 0;
0 commit comments