Skip to content

Commit 00fe035

Browse files
committed
Merge pull request #9030 from Azoy/swift-integer-generics
Support for Swift value generics
1 parent c034db5 commit 00fe035

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
@@ -5475,7 +5475,7 @@ SwiftASTContext::CreateGenericTypeParamType(unsigned int depth,
54755475
unsigned int index) {
54765476
ThreadSafeASTContext ast_ctx = GetASTContext();
54775477
return ToCompilerType(
5478-
swift::GenericTypeParamType::get(false, depth, index, **ast_ctx));
5478+
swift::GenericTypeParamType::getType(depth, index, **ast_ctx));
54795479
}
54805480

54815481
CompilerType SwiftASTContext::GetErrorType() {

0 commit comments

Comments
 (0)