Skip to content

Commit 6c3574d

Browse files
committed
[lldb] clang-format comment in ReconstructType
1 parent 33bf8f7 commit 6c3574d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4406,7 +4406,10 @@ swift::TypeBase *SwiftASTContext::ReconstructType(ConstString mangled_typename,
44064406
*ast_ctx, mangled_typename.GetStringRef())
44074407
.getPointer();
44084408

4409-
// Objective-C classes sometimes have private subclasses that are invisible to the Swift compiler because they are declared and defined in a .m file. If we can't reconstruct an ObjC type, walk up the type hierarchy until we find something we can import, or until we run out of types
4409+
// Objective-C classes sometimes have private subclasses that are invisible to
4410+
// the Swift compiler because they are declared and defined in a .m file. If
4411+
// we can't reconstruct an ObjC type, walk up the type hierarchy until we find
4412+
// something we can import, or until we run out of types
44104413
while (!found_type) {
44114414
CompilerType clang_type = GetAsClangType(mangled_typename);
44124415
if (!clang_type)

0 commit comments

Comments
 (0)