We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2aace5 commit 8f63a22Copy full SHA for 8f63a22
src/liblapack.jl
@@ -7814,7 +7814,7 @@ function iladlr(m, n, a, lda)
7814
end
7815
7816
function ilaprec(prec)
7817
- return ccall((@blasfunc(ilaprec_), libblastrampoline), BlasInt, (Ref{UInt8}), prec)
+ return ccall((@blasfunc(ilaprec_), libblastrampoline), BlasInt, (Ref{UInt8},), prec)
7818
7819
7820
function ilaslc(m, n, a, lda)
@@ -7828,11 +7828,11 @@ function ilaslr(m, n, a, lda)
7828
7829
7830
function ilatrans(trans)
7831
- return ccall((@blasfunc(ilatrans_), libblastrampoline), BlasInt, (Ref{UInt8}), trans)
+ return ccall((@blasfunc(ilatrans_), libblastrampoline), BlasInt, (Ref{UInt8},), trans)
7832
7833
7834
function ilauplo(uplo)
7835
- return ccall((@blasfunc(ilauplo_), libblastrampoline), BlasInt, (Ref{UInt8}), uplo)
+ return ccall((@blasfunc(ilauplo_), libblastrampoline), BlasInt, (Ref{UInt8},), uplo)
7836
7837
7838
function ilazlc(m, n, a, lda)
0 commit comments