-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added convertCompressed for visionOS 2.0 #2926
Added convertCompressed for visionOS 2.0 #2926
Conversation
Converter/FormatConverter+Compressed.swift:86:33: error: argument passed to call that takes no arguments on iOS. @Matt54 |
Ahhhh of coarse! It doesn't compile if you're not on Xcode 16. Let me see what I can do |
Nice! I could not figure out what was going on 🙈 |
I've made it compile by Swift checking it against 6.0 @aure |
Which actually isn't an ideal solution.. AudioKit is pinned to 5.9 so that code just never compiles now |
I guess our options here are to either delete the new convertCompressed method or leave it to become available once AudioKit hits Swift 6.0 I don't care either way - seems inconsequential. We're just trying to fix visionOS |
Hides existing convertCompressed from visionOS since it does not compile on the platform and adds a modern concurrency version of convertCompressed which works with visionOS 2.0
Related:
#2921
#2923