Skip to content

Commit

Permalink
Merge pull request #71656 from rjmccall/isolated-any-mangling-reconst…
Browse files Browse the repository at this point in the history
…ruction-2

Fix another bug with type reconstruction of `@isolated(any)` types
  • Loading branch information
DougGregor authored Feb 15, 2024
2 parents 0c05f82 + 648b15a commit d9c447f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/swift/Demangling/TypeDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ class ImplFunctionTypeFlags {
bool erasedIsolation,
ImplFunctionDifferentiabilityKind diffKind)
: Rep(unsigned(rep)), Pseudogeneric(pseudogeneric), Escaping(noescape),
Concurrent(concurrent), Async(async),
Concurrent(concurrent), Async(async), ErasedIsolation(erasedIsolation),
DifferentiabilityKind(unsigned(diffKind)) {}

ImplFunctionTypeFlags
Expand Down

0 comments on commit d9c447f

Please sign in to comment.