@@ -12,7 +12,7 @@ def ObjectiveCBridgeableImplementationForNSValue(Type):
1212 _getObjCTypeEncoding({Type}.self)) == 0,
1313 "NSValue does not contain the right type to bridge to {Type}")
1414 result = {Type}()
15- if #available(OSX 13.0, iOS 16.0, tvOS 16.0, watchOS 9 .0, *) {{
15+ if #available(OSX 13.0, iOS 16.0, tvOS 16.0, watchOS 6 .0, *) {{
1616 source.getValue(&result!, size: MemoryLayout<{Type}>.size)
1717 }} else {{
1818 source.getValue(&result!)
@@ -27,7 +27,7 @@ def ObjectiveCBridgeableImplementationForNSValue(Type):
2727 return false
2828 }}
2929 result = {Type}()
30- if #available(OSX 13.0, iOS 16.0, tvOS 16.0, watchOS 9 .0, *) {{
30+ if #available(OSX 13.0, iOS 16.0, tvOS 16.0, watchOS 6 .0, *) {{
3131 source.getValue(&result!, size: MemoryLayout<{Type}>.size)
3232 }} else {{
3333 source.getValue(&result!)
@@ -42,7 +42,7 @@ def ObjectiveCBridgeableImplementationForNSValue(Type):
4242 _getObjCTypeEncoding({Type}.self)) == 0,
4343 "NSValue does not contain the right type to bridge to {Type}")
4444 var result = {Type}()
45- if #available(OSX 13.0, iOS 16.0, tvOS 16.0, watchOS 9 .0, *) {{
45+ if #available(OSX 13.0, iOS 16.0, tvOS 16.0, watchOS 6 .0, *) {{
4646 unwrappedSource.getValue(&result, size: MemoryLayout<{Type}>.size)
4747 }} else {{
4848 unwrappedSource.getValue(&result)
0 commit comments