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
Fix build with Xcode 16 (#375)
Prior to this, Xcode 16 was unable to infer the type of the variable (while Xcode 15 was), so the lookup to `reversed()` was ambiguous.
This adds `String` as the inferred type, so that the call to `reversed()` is no longer ambiguous.
Enable backwards compatibility when compiling with Xcode 14 (#329)
* Enable backwards compatibility when compiling with Xcode 14
This will still mean that the bug addressed in #314 will persist, but will allow consumers bound to older Xcode versions to continue to update the rest of the codebase and its dependencies
* Add end-of-file new lines
* Safe-guard usage as well