Skip to content

Commit 1cafe66

Browse files
committed
Add missing override impls for enum types to TypeSystemSwift. (NFC)
1 parent f268a11 commit 1cafe66

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwift.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,13 @@ class TypeSystemSwift : public TypeSystem {
174174
bool &is_complex) override;
175175
bool IsIntegerType(lldb::opaque_compiler_type_t type,
176176
bool &is_signed) override;
177+
bool IsScopedEnumerationType(lldb::opaque_compiler_type_t type) override {
178+
return false;
179+
}
180+
CompilerType
181+
GetEnumerationIntegerType(lldb::opaque_compiler_type_t type) override {
182+
return {};
183+
}
177184
bool IsScalarType(lldb::opaque_compiler_type_t type) override;
178185
bool IsCStringType(lldb::opaque_compiler_type_t type,
179186
uint32_t &length) override {

0 commit comments

Comments
 (0)