Skip to content

Commit 36c49ea

Browse files
committed
AST: Allow substitution limits >= 32767
1 parent 4d7adea commit 36c49ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/swift/AST/InFlightSubstitution.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ class InFlightSubstitution {
3535
LookupConformanceFn BaselineLookupConformance;
3636
SubstOptions Options;
3737
RecursiveTypeProperties Props;
38-
unsigned RemainingCount : 15;
38+
unsigned RemainingCount : 31;
3939
unsigned InitLimit : 1;
40-
unsigned RemainingDepth : 15;
40+
unsigned RemainingDepth : 31;
4141
unsigned LimitReached : 1;
4242

4343
struct ActivePackExpansion {

0 commit comments

Comments
 (0)