Skip to content

Commit 35ed7e9

Browse files
committed
Adapt to GenericSignature API Changes
1 parent 473bb9e commit 35ed7e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7601,7 +7601,7 @@ CompilerType SwiftASTContext::GetUnboundGenericType(opaque_compiler_type_t type,
76017601
auto *nominal_type_decl = unbound_generic_type->getDecl();
76027602
swift::GenericSignature generic_sig =
76037603
nominal_type_decl->getGenericSignature();
7604-
auto depTy = generic_sig->getGenericParams()[idx];
7604+
auto depTy = generic_sig.getGenericParams()[idx];
76057605
return ToCompilerType({nominal_type_decl->mapTypeIntoContext(depTy)
76067606
->castTo<swift::ArchetypeType>()});
76077607
}

0 commit comments

Comments
 (0)