diff options
author | Igor Freire <igor@blockstream.com> | 2021-04-12 21:27:49 -0300 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-04-17 19:58:05 -0400 |
commit | e84addac78b512bd3053f33b7889e135037a2702 (patch) | |
tree | eaab05b1ec58ad0b1b591dcacb8f2b8c68fb0e08 /gr-blocks | |
parent | 9e24ad6d94e75827f2ea1fe0e7371dc16dc39db6 (diff) |
Remove #if 0
Signed-off-by: Igor Freire <igor@blockstream.com>
Diffstat (limited to 'gr-blocks')
-rw-r--r-- | gr-blocks/lib/rotator_cc_impl.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gr-blocks/lib/rotator_cc_impl.cc b/gr-blocks/lib/rotator_cc_impl.cc index 6d7d8ac9b9..84c3a6ecef 100644 --- a/gr-blocks/lib/rotator_cc_impl.cc +++ b/gr-blocks/lib/rotator_cc_impl.cc @@ -85,12 +85,6 @@ int rotator_cc_impl::work(int noutput_items, gr::thread::scoped_lock l(d_mutex); const gr_complex* in = (const gr_complex*)input_items[0]; gr_complex* out = (gr_complex*)output_items[0]; - -#if 0 - for (int i=0; i<noutput_items; i++) - out[i] = d_r.rotate(in[i]); -#else - const uint64_t n_written = nitems_written(0); if (d_inc_update_queue.empty()) { @@ -134,7 +128,6 @@ int rotator_cc_impl::work(int noutput_items, in + nprocessed_items, (noutput_items - nprocessed_items)); } -#endif return noutput_items; } |