Add no-op handing for HLSLAttributedResource switch cases (#106698)

New value added in e00e9a3f82
This commit is contained in:
Danial Klimkin
2024-08-30 11:51:44 +02:00
committed by GitHub
parent b294951e39
commit 1b32c3e298

View File

@@ -4241,6 +4241,9 @@ TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) {
// We don't handle pack indexing yet
case clang::Type::PackIndexing:
break;
case clang::Type::HLSLAttributedResource:
break;
}
// We don't know hot to display this type...
return lldb::eTypeClassOther;
@@ -5148,6 +5151,9 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
// We don't handle pack indexing yet
case clang::Type::PackIndexing:
break;
case clang::Type::HLSLAttributedResource:
break;
}
count = 0;
return lldb::eEncodingInvalid;
@@ -5309,6 +5315,9 @@ lldb::Format TypeSystemClang::GetFormat(lldb::opaque_compiler_type_t type) {
// We don't handle pack indexing yet
case clang::Type::PackIndexing:
break;
case clang::Type::HLSLAttributedResource:
break;
}
// We don't know hot to display this type...
return lldb::eFormatBytes;