Skip to content

Commit 4a6ee89

Browse files
authored
Make fun immutable (#136)
* make fun immutable * test against AFSingularities
1 parent fbf61e3 commit 4a6ee89

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/downstream.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- {repo: ApproxFun.jl, group: JuliaApproximation}
2323
- {repo: ApproxFunOrthogonalPolynomials.jl, group: JuliaApproximation}
2424
- {repo: ApproxFunFourier.jl, group: JuliaApproximation}
25+
- {repo: ApproxFunSingularities.jl, group: JuliaApproximation}
2526

2627
steps:
2728
- uses: actions/checkout@v2

src/Fun.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include("Space.jl")
88
## Constructors
99

1010

11-
mutable struct Fun{S,T,VT} <: Function
11+
struct Fun{S,T,VT} <: Function
1212
space::S
1313
coefficients::VT
1414
function Fun{S,T,VT}(sp::S,coeff::VT) where {S,T,VT}

0 commit comments

Comments
 (0)