Skip to content

Commit d9c447f

Browse files
authored
Merge pull request #71656 from rjmccall/isolated-any-mangling-reconstruction-2
Fix another bug with type reconstruction of `@isolated(any)` types
2 parents 0c05f82 + 648b15a commit d9c447f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/Demangling/TypeDecoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ class ImplFunctionTypeFlags {
293293
bool erasedIsolation,
294294
ImplFunctionDifferentiabilityKind diffKind)
295295
: Rep(unsigned(rep)), Pseudogeneric(pseudogeneric), Escaping(noescape),
296-
Concurrent(concurrent), Async(async),
296+
Concurrent(concurrent), Async(async), ErasedIsolation(erasedIsolation),
297297
DifferentiabilityKind(unsigned(diffKind)) {}
298298

299299
ImplFunctionTypeFlags

0 commit comments

Comments
 (0)