Skip to content

Commit 3f445fc

Browse files
committed
[lldb][TypeSystemSwift] Implement IsMemberFunctionPointerType
Introduced for `TypeSystemClang` in `603ebc545d03` but not required for Swift.
1 parent 4786a01 commit 3f445fc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,10 @@ class TypeSystemSwift : public TypeSystem {
240240
CompilerType *function_pointer_type_ptr) override {
241241
return false;
242242
}
243+
bool IsMemberFunctionPointerType(
244+
lldb::opaque_compiler_type_t type) override {
245+
return false;
246+
}
243247
bool IsPolymorphicClass(lldb::opaque_compiler_type_t type) override {
244248
return false;
245249
}

0 commit comments

Comments
 (0)