You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#error("Cannot use a version of Swift greater than available. Please create a Github issue for us to add support for the version of Swift you want to use.")
11
+
#elseif swift(>=5.5)
12
+
return"5.5"
13
+
#elseif swift(>=5.4)
14
+
return"5.4"
15
+
#elseif swift(>=5.3)
16
+
return"5.3"
17
+
#elseif swift(>=5.2)
18
+
return"5.2"
19
+
#elseif swift(>=5.1)
20
+
return"5.1"
21
+
#elseif swift(>=5.0)
22
+
return"5.0"
23
+
#else
24
+
#error("Cannot use a version of Swift less than 5.0")
0 commit comments