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

Space out ternaries in LAPACK wrappers to avoid syntax warnings #22625

Merged
merged 1 commit into from
Jun 30, 2017

Conversation

ararslan
Copy link
Member

Missed these in the initial pass.

@ararslan ararslan requested a review from tkelman June 30, 2017 01:51
U = similar(A, $elty, jobu == 'A'? (m, m):(jobu == 'S'? (m, minmn) : (m, 0)))
VT = similar(A, $elty, jobvt == 'A'? (n, n):(jobvt == 'S'? (minmn, n) : (n, 0)))
U = similar(A, $elty, jobu == 'A' ? (m, m):(jobu == 'S' ? (m, minmn) : (m, 0)))
VT = similar(A, $elty, jobvt == 'A' ? (n, n):(jobvt == 'S' ? (minmn, n) : (n, 0)))
Copy link
Contributor

@tkelman tkelman Jun 30, 2017

Choose a reason for hiding this comment

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

I'd add spaces here (n, n) : (jobvt too, and on the line above

Copy link
Member Author

Choose a reason for hiding this comment

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

Okay, sounds good

@ararslan
Copy link
Member Author

macOS failure is #17626

@ararslan ararslan merged commit c509321 into master Jun 30, 2017
@ararslan ararslan deleted the aa/ternaries branch June 30, 2017 19:34
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