Skip to content
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

Fix attempt to index Ref at position 1 in ggsvd3! #15883

Merged
merged 1 commit into from
Apr 15, 2016
Merged

Conversation

nalimilan
Copy link
Member

Incorrectly backported in e3f3f72. Similar patterns in the file
use Array instead of Ref in 0.4.

Fixes #15733.

Incorrectly backported in e3f3f72. Similar patterns in the file
use Array instead of Ref in 0.4.
@yuyichao
Copy link
Contributor

It's slightly better to fix the macro to accept both but this should be fine too....

@nalimilan
Copy link
Member Author

I tried to keep the backported code consistent with the original one. On master, things are quite different now anyway.

@tkelman
Copy link
Contributor

tkelman commented Apr 15, 2016

thanks!

@tkelman tkelman merged commit 3d2eebf into release-0.4 Apr 15, 2016
@tkelman tkelman deleted the nl/ggsvd3 branch April 15, 2016 22:48
k = Ref{BlasInt}()
l = Ref{BlasInt}()
k = Array(BlasInt, 1)
l = Array(BlasInt, 1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Strictly speaking I guess k and l were okay using Ref since none of the macros were referring to them, and it might look a little more natural below to use k[1] instead of k[] now if it's going to be an Array, but for now it's the same.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, they were fine, but I realized all other calls used an array, so better be consistent. But indeed I could have changed [] to [1] too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants