Skip to content

Commit

Permalink
Actually fix 1.0 support?
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Dec 14, 2022
1 parent 018f282 commit 447687b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/influence.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ if VERSION >= v"1.3.0-DEV.94"
const _diagm = diagm
else
function _diagm(n::Integer, m::Integer, v::AbstractVector)
Base.require_one_based_indexing(v)
length(v) == min(n, m) || throw(DimensionMismatch())
D = similar(v, (n, m))
fill!(D, zero(eltype(D)))
Expand Down

0 comments on commit 447687b

Please sign in to comment.