Skip to content

Commit 8f63a22

Browse files
committed
Adapt the generator for wrappers with one argument
1 parent a2aace5 commit 8f63a22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/liblapack.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7814,7 +7814,7 @@ function iladlr(m, n, a, lda)
78147814
end
78157815

78167816
function ilaprec(prec)
7817-
return ccall((@blasfunc(ilaprec_), libblastrampoline), BlasInt, (Ref{UInt8}), prec)
7817+
return ccall((@blasfunc(ilaprec_), libblastrampoline), BlasInt, (Ref{UInt8},), prec)
78187818
end
78197819

78207820
function ilaslc(m, n, a, lda)
@@ -7828,11 +7828,11 @@ function ilaslr(m, n, a, lda)
78287828
end
78297829

78307830
function ilatrans(trans)
7831-
return ccall((@blasfunc(ilatrans_), libblastrampoline), BlasInt, (Ref{UInt8}), trans)
7831+
return ccall((@blasfunc(ilatrans_), libblastrampoline), BlasInt, (Ref{UInt8},), trans)
78327832
end
78337833

78347834
function ilauplo(uplo)
7835-
return ccall((@blasfunc(ilauplo_), libblastrampoline), BlasInt, (Ref{UInt8}), uplo)
7835+
return ccall((@blasfunc(ilauplo_), libblastrampoline), BlasInt, (Ref{UInt8},), uplo)
78367836
end
78377837

78387838
function ilazlc(m, n, a, lda)

0 commit comments

Comments
 (0)