Skip to content

Commit

Permalink
try to fix build failure due to 11def49
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Nov 22, 2013
1 parent 93274a3 commit 6e6e093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ end

#Check that matrix is square
function chksquare(A...)
sizes=BlasInt[]
sizes=Int[]
for a in A
size(a,1)==size(a,2) || throw(DimensionMismatch("Matrix is not square: dimensions are $(size(a))"))
push!(sizes, size(a,1))
Expand Down

0 comments on commit 6e6e093

Please sign in to comment.