Skip to content

Commit

Permalink
[LinearAlgebra] Fix missing newlines at end of LBTLibraryInfo show …
Browse files Browse the repository at this point in the history
…method (#44382)

These were accidentally missed in a recent update to LBT v5+
  • Loading branch information
staticfloat committed Feb 28, 2022
1 parent 34a3c0d commit 394af38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/LinearAlgebra/src/lbt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ function Base.show(io::IO, mime::MIME{Symbol("text/plain")}, lbt::LBTLibraryInfo
summary(io, lbt); println(io)
println(io, "├ Library: ", basename(lbt.libname))
println(io, "├ Interface: ", lbt.interface)
print(io, "├ Complex return style: ", lbt.complex_retstyle)
print(io, "├ F2C: ", lbt.f2c)
println(io, "├ Complex return style: ", lbt.complex_retstyle)
println(io, "├ F2C: ", lbt.f2c)
print(io, "└ CBLAS: ", lbt.cblas)
end

Expand Down

2 comments on commit 394af38

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.