File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/libraries/System.Text.RegularExpressions/gen Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -837,7 +837,7 @@ void EmitFixedSet_LeftToRight()
837
837
writer . WriteLine ( $ "// The primary set being searched for was found. { numRemainingSets } more set{ ( numRemainingSets > 1 ? "s" : "" ) } will be checked so as") ;
838
838
writer . WriteLine ( $ "// to minimize the number of places TryMatchAtCurrentPosition is run unnecessarily.") ;
839
839
writer . WriteLine ( $ "// Make sure { ( numRemainingSets > 1 ? "they fit" : "it fits" ) } in the remainder of the input.") ;
840
- using ( EmitBlock ( writer , $ "if ((uint)(i + { maxDistance } ) >= span.Length)") )
840
+ using ( EmitBlock ( writer , $ "if ((uint)(i + { maxDistance } ) >= (uint) span.Length)") )
841
841
{
842
842
noMatchFoundLabelNeeded = true ;
843
843
Goto ( NoMatchFound ) ;
You can’t perform that action at this time.
0 commit comments