Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4262,6 +4262,8 @@ TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) {

case clang::Type::HLSLAttributedResource:
break;
case clang::Type::HLSLInlineSpirv:
break;
}
// We don't know hot to display this type...
return lldb::eTypeClassOther;
Expand Down Expand Up @@ -5128,6 +5130,8 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,

case clang::Type::HLSLAttributedResource:
break;
case clang::Type::HLSLInlineSpirv:
break;
}
count = 0;
return lldb::eEncodingInvalid;
Expand Down Expand Up @@ -5292,6 +5296,8 @@ lldb::Format TypeSystemClang::GetFormat(lldb::opaque_compiler_type_t type) {

case clang::Type::HLSLAttributedResource:
break;
case clang::Type::HLSLInlineSpirv:
break;
}
// We don't know hot to display this type...
return lldb::eFormatBytes;
Expand Down
Loading