Skip to content

Commit 950e29f

Browse files
authored
generalise eltype (#119)
1 parent 8006e93 commit 950e29f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ToeplitzMatrices.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ end
3434
include("iterativeLinearSolvers.jl")
3535

3636
# Abstract
37-
abstract type AbstractToeplitz{T<:Number} <: AbstractMatrix{T} end
37+
abstract type AbstractToeplitz{T} <: AbstractMatrix{T} end
3838

3939
size(A::AbstractToeplitz) = (length(A.vc),length(A.vr))
4040
@inline _vr(A::AbstractToeplitz) = A.vr

0 commit comments

Comments
 (0)