-
Notifications
You must be signed in to change notification settings - Fork 29
Fix Julia 1.12 issues #529
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
base: master
Are you sure you want to change the base?
Conversation
Your PR no longer requires formatting changes. Thank you for your contribution! |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #529 +/- ##
=======================================
Coverage 79.70% 79.70%
=======================================
Files 45 45
Lines 2818 2818
=======================================
Hits 2246 2246
Misses 572 572 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Besides the one indent issue, this looks good to me.
I tested the change and it fixes the problem for me.
Thanks for creating and submitting the PR!
Broadcast.BroadcastStyle( | ||
::oneArrayStyle{N, B1}, | ||
::oneArrayStyle{N, B2}) where {N,B1,B2} = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both arguments should be indented identically or there should be no line break at all. I think 91 characters is still reasonable.
Broadcast.BroadcastStyle( | |
::oneArrayStyle{N, B1}, | |
::oneArrayStyle{N, B2}) where {N,B1,B2} = | |
Broadcast.BroadcastStyle(::oneArrayStyle{N, B1}, ::oneArrayStyle{N, B2}) where {N,B1,B2} = |
@maleadt Anything I can do here about? JuliaGPU/GPUCompiler.jl#101
|
No description provided.