Skip to content

Commit 03098d4

Browse files
authored
Merge pull request swiftlang#9030 from Azoy/swift-integer-generics
Support for Swift value generics
2 parents fb5d839 + ccabceb commit 03098d4

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
@@ -5473,7 +5473,7 @@ SwiftASTContext::CreateGenericTypeParamType(unsigned int depth,
54735473
unsigned int index) {
54745474
ThreadSafeASTContext ast_ctx = GetASTContext();
54755475
return ToCompilerType(
5476-
swift::GenericTypeParamType::get(false, depth, index, **ast_ctx));
5476+
swift::GenericTypeParamType::getType(depth, index, **ast_ctx));
54775477
}
54785478

54795479
CompilerType SwiftASTContext::GetErrorType() {

0 commit comments

Comments
 (0)