Skip to content

Commit 25ae816

Browse files
committed
Add CGFloat to the skip list to work around a problem in ci.
1 parent a37e107 commit 25ae816

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwiftTypeRef.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4045,6 +4045,9 @@ bool TypeSystemSwiftTypeRef::ShouldSkipValidation(opaque_compiler_type_t type) {
40454045

40464046
if (mangled_name == "$sSo6CGSizeVD")
40474047
return true;
4048+
4049+
if (mangled_name == "$s14CoreFoundation7CGFloatVD")
4050+
return true;
40484051
// We skip validation when dealing with a builtin type since builtins are
40494052
// considered type aliases by Swift, which we're deviating from since
40504053
// SwiftASTContext reconstructs Builtin types as TypeAliases pointing to the

0 commit comments

Comments
 (0)