Skip to content

Commit

Permalink
Don't import unused names (#39)
Browse files Browse the repository at this point in the history
* Don't import unused names

* Bump version to v0.1.5
  • Loading branch information
jishnub authored Nov 2, 2023
1 parent 50d0bf1 commit 7aef0c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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.4"
version = "0.1.5"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down
6 changes: 2 additions & 4 deletions src/GenericFFT.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ using Reexport

import Base: *

import AbstractFFTs: Plan, ScaledPlan,
fft, ifft, bfft, fft!, ifft!, bfft!, rfft, irfft, brfft,
import AbstractFFTs: Plan,
plan_fft, plan_ifft, plan_bfft, plan_fft!, plan_ifft!,
plan_bfft!, plan_rfft, plan_irfft, plan_brfft,
fftshift, ifftshift, rfft_output_size, brfft_output_size,
plan_inv, normalization
plan_inv

import FFTW: dct, dct!, idct, idct!, plan_dct!, plan_idct!,
plan_dct, plan_idct, fftwNumber
Expand Down

0 comments on commit 7aef0c3

Please sign in to comment.