diff options
author | Ron Economos <w6rz@comcast.net> | 2020-01-26 12:38:03 -0800 |
---|---|---|
committer | devnulling <devnulling@users.noreply.github.com> | 2020-01-26 17:26:17 -0800 |
commit | 75898788f3e686279a054d0e3a51c6cc2805ed2c (patch) | |
tree | 132455cce12fa15a1924e2c4c73134230ff3369e /gr-fft/lib/fft.cc | |
parent | be6647a101077e7fa471ed3a186da1b01025952b (diff) |
gr-fft: Remove unused private variables.
Diffstat (limited to 'gr-fft/lib/fft.cc')
-rw-r--r-- | gr-fft/lib/fft.cc | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gr-fft/lib/fft.cc b/gr-fft/lib/fft.cc index e787f2f950..d97c2b3ed6 100644 --- a/gr-fft/lib/fft.cc +++ b/gr-fft/lib/fft.cc @@ -156,7 +156,7 @@ static void export_wisdom() // ---------------------------------------------------------------- fft_complex::fft_complex(int fft_size, bool forward, int nthreads) - : d_fft_size(fft_size), d_nthreads(nthreads), d_inbuf(fft_size), d_outbuf(fft_size) + : d_nthreads(nthreads), d_inbuf(fft_size), d_outbuf(fft_size) { // Hold global mutex during plan construction and destruction. planner::scoped_lock lock(planner::mutex()); @@ -211,10 +211,7 @@ void fft_complex::execute() { fftwf_execute((fftwf_plan)d_plan); } // ---------------------------------------------------------------- fft_real_fwd::fft_real_fwd(int fft_size, int nthreads) - : d_fft_size(fft_size), - d_nthreads(nthreads), - d_inbuf(fft_size), - d_outbuf(fft_size / 2 + 1) + : d_nthreads(nthreads), d_inbuf(fft_size), d_outbuf(fft_size / 2 + 1) { // Hold global mutex during plan construction and destruction. planner::scoped_lock lock(planner::mutex()); @@ -269,10 +266,7 @@ void fft_real_fwd::execute() { fftwf_execute((fftwf_plan)d_plan); } // ---------------------------------------------------------------- fft_real_rev::fft_real_rev(int fft_size, int nthreads) - : d_fft_size(fft_size), - d_nthreads(nthreads), - d_inbuf(fft_size / 2 + 1), - d_outbuf(fft_size) + : d_nthreads(nthreads), d_inbuf(fft_size / 2 + 1), d_outbuf(fft_size) { // Hold global mutex during plan construction and destruction. planner::scoped_lock lock(planner::mutex()); |