Skip to content

Commit

Permalink
Update EltypeExtensions.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
putianyi889 committed Nov 13, 2024
1 parent d30d026 commit 3cc86cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EltypeExtensions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ end
else
elconvert(::Type{T}, A::Bidiagonal{S,V}) where {T,S,V} = Bidiagonal{T,_to_eltype(T,V)}(A.dv, A.ev, A.uplo)
end
@static if VERSION >= v"1.10" # see https://github.com/JuliaLang/julia/pull/46196
elconvert(::Type{T}, A::AbstractQ) where T = convert(AbstractQ{T}, A)
@static if VERSION >= v"1.10"
elconvert(::Type{T}, A::AbstractQ) where T = convert(AbstractQ{T}, A) # see https://github.com/JuliaLang/julia/pull/46196
@inline bigfloatconvert(x, prec) = BigFloat(x, precision = prec)
else
@inline bigfloatconvert(x, prec) = BigFloat(x, prec)
Expand Down

0 comments on commit 3cc86cd

Please sign in to comment.