Skip to content

Commit

Permalink
Fix method overload
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty committed Mar 25, 2023
1 parent a209c80 commit 2e55016
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "GenericFFT"
uuid = "a8297547-1b15-4a5a-a998-a2ac5f1cef28"
version = "0.1.2"
version = "0.1.3"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down
2 changes: 1 addition & 1 deletion src/fft.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const ComplexFloats = Complex{T} where T<:AbstractFloat
# The following implements Bluestein's algorithm, following http://www.dsprelated.com/dspbooks/mdft/Bluestein_s_FFT_Algorithm.html
# To add more types, add them in the union of the function's signature.

function generic_fft(x::AbstractVector{T}, region::Integer=1) where T<:AbstractFloats
function generic_fft(x::AbstractVector{T}, region::Integer) where T<:AbstractFloats
@assert region == 1
generic_fft(x)
end
Expand Down

2 comments on commit 2e55016

@jishnub
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/80484

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.3 -m "<description of version>" 2e55016b642f5bdc7324a064b81f16dca6b967e4
git push origin v0.1.3

Please sign in to comment.