Skip to content

Commit 85d2adb

Browse files
committed
Update SwiftASTContext.cpp
1 parent 65ce91c commit 85d2adb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5360,7 +5360,9 @@ SwiftASTContext::CreateGenericTypeParamType(unsigned int depth,
53605360
unsigned int index) {
53615361
ThreadSafeASTContext ast_ctx = GetASTContext();
53625362
return ToCompilerType(
5363-
swift::GenericTypeParamType::get(false, depth, index, **ast_ctx));
5363+
swift::GenericTypeParamType::get(/*isParameterPack*/ false,
5364+
/*isValue*/ false,
5365+
depth, index, **ast_ctx));
53645366
}
53655367

53665368
CompilerType SwiftASTContext::GetErrorType() {

0 commit comments

Comments
 (0)