Skip to content

Commit e320aa9

Browse files
authored
Merge pull request #9218 from Azoy/cherry-pick-integer-generics
[next] Support for Swift value generics
2 parents e1a3ee5 + 3921f0f commit e320aa9

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)