Skip to content

Commit 414710f

Browse files
authored
UndefError fix (JuliaApproximation/ApproxFunBase.jl#701) (#42)
* UndefError fix (#701) * add comment * bump version number
1 parent 10d1b7f commit 414710f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunBase"
22
uuid = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3-
version = "0.3.4"
3+
version = "0.3.5"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

src/Operators/Operator.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ macro wrapperstructure(Wrap)
461461
$ret
462462

463463
$func(D::$Wrap,k::Integer) = $func(D.op,k)
464-
$func(A::$Wrap,i::ApproxFunBase.Infinity) = $func(D.op,k)
464+
$func(A::$Wrap,i::ApproxFunBase.Infinity) = # $func(A.op,i) | see PR #42
465465
end
466466
end
467467

@@ -840,4 +840,4 @@ diagindshift(S::SubOperator) = diagindshift(S,parentindices(S)[1],parentindices(
840840

841841
#TODO: Remove
842842
diagindrow(S,kr,jr) = bandwidth(S,2)+first(jr)-first(kr)+1
843-
diagindrow(S::SubOperator) = diagindrow(S,parentindices(S)[1],parentindices(S)[2])
843+
diagindrow(S::SubOperator) = diagindrow(S,parentindices(S)[1],parentindices(S)[2])

0 commit comments

Comments
 (0)