File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 20
20
namespace lldb_private {
21
21
22
22
struct JSONSymbol {
23
- std::optional <uint64_t > address;
24
- std::optional <uint64_t > value;
25
- std::optional <uint64_t > size;
26
- std::optional <uint64_t > id;
27
- std::optional <lldb::SymbolType> type;
23
+ llvm::Optional <uint64_t > address;
24
+ llvm::Optional <uint64_t > value;
25
+ llvm::Optional <uint64_t > size;
26
+ llvm::Optional <uint64_t > id;
27
+ llvm::Optional <lldb::SymbolType> type;
28
28
std::string name;
29
29
};
30
30
Original file line number Diff line number Diff line change @@ -8,5 +8,4 @@ add_lldb_library(lldbPluginObjectFileJSON PLUGIN
8
8
lldbUtility
9
9
LINK_COMPONENTS
10
10
Support
11
- TargetParser
12
11
)
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class SymbolFileJSON : public lldb_private::SymbolFileCommon {
82
82
lldb::CompUnitSP ParseCompileUnitAtIndex (uint32_t index) override ;
83
83
84
84
Type *ResolveTypeUID (lldb::user_id_t type_uid) override { return nullptr ; }
85
- std::optional <ArrayInfo> GetDynamicArrayInfoForUID (
85
+ llvm::Optional <ArrayInfo> GetDynamicArrayInfoForUID (
86
86
lldb::user_id_t type_uid,
87
87
const lldb_private::ExecutionContext *exe_ctx) override {
88
88
return std::nullopt;
You can’t perform that action at this time.
0 commit comments