Skip to content

Commit cf888f9

Browse files
authored
Fix missing import of Matrix (#241)
1 parent 5e9c350 commit cf888f9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/ApproxFunOrthogonalPolynomials.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ import Base: convert, getindex, eltype, <, <=, +, -, *, /, ^, ==,
5959
isless, union, angle, isnan, isapprox, isempty,
6060
minimum, maximum, extrema, zeros, one, promote_rule,
6161
getproperty, real, imag, max, min, log, acos,
62-
sin, cos, asinh, acosh, atanh, ones
62+
sin, cos, asinh, acosh, atanh, ones,
63+
Matrix
6364
# atan, tan, tanh, asin, sec, sinh, cosh,
6465
# split
6566

test/runtests.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ end
1414
@test reverseorientation(Arc(1,2,(0.1,0.2))) == Arc(1,2,(0.2,0.1))
1515
end
1616

17+
# missing import bug
18+
@test ApproxFunOrthogonalPolynomials.Matrix === Base.Matrix
19+
1720
include("testutils.jl")
1821

1922
include("ClenshawTest.jl"); GC.gc()

0 commit comments

Comments
 (0)