Skip to content

Commit 1b32c3e

Browse files
authored
Add no-op handing for HLSLAttributedResource switch cases (#106698)
New value added in e00e9a3
1 parent b294951 commit 1b32c3e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4241,6 +4241,9 @@ TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) {
42414241
// We don't handle pack indexing yet
42424242
case clang::Type::PackIndexing:
42434243
break;
4244+
4245+
case clang::Type::HLSLAttributedResource:
4246+
break;
42444247
}
42454248
// We don't know hot to display this type...
42464249
return lldb::eTypeClassOther;
@@ -5148,6 +5151,9 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
51485151
// We don't handle pack indexing yet
51495152
case clang::Type::PackIndexing:
51505153
break;
5154+
5155+
case clang::Type::HLSLAttributedResource:
5156+
break;
51515157
}
51525158
count = 0;
51535159
return lldb::eEncodingInvalid;
@@ -5309,6 +5315,9 @@ lldb::Format TypeSystemClang::GetFormat(lldb::opaque_compiler_type_t type) {
53095315
// We don't handle pack indexing yet
53105316
case clang::Type::PackIndexing:
53115317
break;
5318+
5319+
case clang::Type::HLSLAttributedResource:
5320+
break;
53125321
}
53135322
// We don't know hot to display this type...
53145323
return lldb::eFormatBytes;

0 commit comments

Comments
 (0)