-
Notifications
You must be signed in to change notification settings - Fork 193
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
The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions #52
Comments
Please merge this. Same thing happening for me too. |
Same issue occurred with me too. |
@RanaHossam , just to fix this temporarily, you can use @mushthak 's commit in your podfile.
|
This is an amazing tip in general |
I'm getting this error now. I'm using Xcode 12.2. |
I use Xcode 12.5, it not working. |
Hey @hungHatto. https://github.com/lexrus/LTMorphingLabel/blob/master/LTMorphingLabel/LTEasing.swift
|
@TorbenI Great idea to use @suzuki-0000 I have updated both the functions in For a temporary fix till the PR is merged, you guys can use the commit
|
Hi, @iranjith4 I just install yours
but, why the time start from 01:12:00:00 + ⍺ and stop at 01:12:00:00?? |
@kimxwan0319 My commit have the latest code from the repo. May be some updates in the library causing the issues ? |
@iranjith4 isn't '5da1ccb7da5b493821f8217dd07d0191145b0b83' your latest commit? I use that from the beginning and I have the problem |
@kimxwan0319 The latest commit of mine includes the latest pushes from Library. So for you, it may be breaking because of recent changes in the library itself. I would suggest you to change your code based on the changes in the library. |
Same issue for me too |
@Elamuruga May be because of changes in the library itself?
|
@mushthak @RanaHossam @iranjith4 just to fix this temporarily, you can use commit in your podfile.
|
Issue
This issue is getting after Xcode 12 update.
The issue is caused by the expression which needed to be break down into sub-expressions
Using release version : 4.0.1
Buid settings:
Proposed solution:
Replacing expression:
return c * $0 * $0 * $0 * $0 * $0 + b
with
return c * ($0 * $0 * $0 * $0 * $0) + b
The text was updated successfully, but these errors were encountered: