Skip to content

Commit

Permalink
Fixed prectype bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtrogdon committed Mar 25, 2021
1 parent 999b26a commit 36f59dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ macro fourier_operator(Op)

@wrapper $OpWrap

$ConcOp(sp::Space,k) = $ConcOp{typeof(sp),typeof(k),prectype(sp)}(sp,k)
$ConcOp(sp::Space,k) = $ConcOp{typeof(sp),typeof(k),rangetype(sp)}(sp,k)
$ConcOp(sp::Space) = $ConcOp(sp,1.0)

$Op(sp::UnsetSpace,k) = $ConcOp(sp,k)
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using ApproxFunRational, ApproxFunFourier, ApproxFunBase, ApproxFun
using ApproxFun, ApproxFunRational
using Test

## TODO: Test SumFuns
Expand Down

0 comments on commit 36f59dc

Please sign in to comment.