Skip to content

Commit 46f3f8b

Browse files
Merge pull request #6423 from adrian-prantl/ignore-cgfloat
Add CGFloat to the skip list to work around a problem in ci.
2 parents e4585ff + 25ae816 commit 46f3f8b

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
@@ -4120,6 +4120,9 @@ bool TypeSystemSwiftTypeRef::ShouldSkipValidation(opaque_compiler_type_t type) {
41204120

41214121
if (mangled_name == "$sSo6CGSizeVD")
41224122
return true;
4123+
4124+
if (mangled_name == "$s14CoreFoundation7CGFloatVD")
4125+
return true;
41234126
// We skip validation when dealing with a builtin type since builtins are
41244127
// considered type aliases by Swift, which we're deviating from since
41254128
// SwiftASTContext reconstructs Builtin types as TypeAliases pointing to the

0 commit comments

Comments
 (0)