@@ -535,7 +535,7 @@ extension _RegexFactory {
535535 _ left: some RegexComponent ,
536536 ignoringOutputTypeOf right: some RegexComponent
537537 ) -> Regex < Output > {
538- if #available( macOS 9999 , iOS 9999 , watchOS 9999 , tvOS 9999 , * ) {
538+ if #available( macOS 14 . 0 , iOS 17 . 0 , watchOS 10 . 0 , tvOS 17 . 0 , * ) {
539539 return accumulate ( left, ignoreCapturesInTypedOutput ( right) )
540540 }
541541 return accumulate ( left, right)
@@ -549,7 +549,7 @@ extension _RegexFactory {
549549 ignoringOutputTypeOf left: some RegexComponent ,
550550 _ right: some RegexComponent
551551 ) -> Regex < Output > {
552- if #available( macOS 9999 , iOS 9999 , watchOS 9999 , tvOS 9999 , * ) {
552+ if #available( macOS 14 . 0 , iOS 17 . 0 , watchOS 10 . 0 , tvOS 17 . 0 , * ) {
553553 return accumulate ( ignoreCapturesInTypedOutput ( left) , right)
554554 }
555555 return accumulate ( left, right)
@@ -563,7 +563,7 @@ extension _RegexFactory {
563563 ignoringOutputTypeOf left: some RegexComponent ,
564564 andAlso right: some RegexComponent
565565 ) -> Regex < Output > {
566- if #available( macOS 9999 , iOS 9999 , watchOS 9999 , tvOS 9999 , * ) {
566+ if #available( macOS 14 . 0 , iOS 17 . 0 , watchOS 10 . 0 , tvOS 17 . 0 , * ) {
567567 return accumulate (
568568 ignoreCapturesInTypedOutput ( left) , ignoreCapturesInTypedOutput ( right) )
569569 }
0 commit comments