Skip to content

Commit 4ec7bb4

Browse files
committed
Symbol: use elaborated types for DataExtractor
Use type elaborated spellings for the parameter to avoid the ambiguity between `llvm` and `lldb_private` names. This is needed for building with Visual Studio.
1 parent a6fcdb2 commit 4ec7bb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/source/Symbol/ClangASTContext.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8924,7 +8924,7 @@ void ClangASTContext::DumpFromSymbolFile(Stream &s,
89248924

89258925
void ClangASTContext::DumpValue(
89268926
lldb::opaque_compiler_type_t type, ExecutionContext *exe_ctx, Stream *s,
8927-
lldb::Format format, const DataExtractor &data,
8927+
lldb::Format format, const lldb_private::DataExtractor &data,
89288928
lldb::offset_t data_byte_offset, size_t data_byte_size,
89298929
uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, bool show_types,
89308930
bool show_summary, bool verbose, uint32_t depth) {
@@ -9381,8 +9381,8 @@ static bool DumpEnumValue(const clang::QualType &qual_type, Stream *s,
93819381

93829382
bool ClangASTContext::DumpTypeValue(
93839383
lldb::opaque_compiler_type_t type, Stream *s, lldb::Format format,
9384-
const DataExtractor &data, lldb::offset_t byte_offset, size_t byte_size,
9385-
uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset,
9384+
const lldb_private::DataExtractor &data, lldb::offset_t byte_offset,
9385+
size_t byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset,
93869386
ExecutionContextScope *exe_scope) {
93879387
if (!type)
93889388
return false;

0 commit comments

Comments
 (0)