-
-
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
Missing argument label 'value:' in call #1277
Comments
There are some work arounds here: #1269 Of the ones listed, this is the one that works for me: I could not get |
also happens in Xcode Release Version 16.0 (16A242d) |
Changing "Expression("Field")" to "SQLite.Expression("Field")" seemed to work for me. It was a lot of effort and I have a relatively small project. I didn't do this, but i recommend maybe trying search and replace. |
Thank you! but, do you know if after adding the typealias, the change won't affect someone working in the same project with Xcode 15 for example? |
this code is ios 18 new define, maybe conflict; |
Its just because compiler assume that its Swift.Expression not SQLite.Expression |
What looks like a namespace problem is completely solved by changing typealias SQLiteExpression = SQLite.Expression |
*error:
The text was updated successfully, but these errors were encountered: