diff options
author | andriy gelman <andriy.gelman@gmail.com> | 2018-02-21 17:57:55 -0500 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-04-28 15:54:32 +0200 |
commit | 3d244b94cf4612a87e0d95e5ab24da4a5fc6aae2 (patch) | |
tree | b4423e82d710ff8e1a7ec8a7ffbd1e795d9adcdc /gr-analog/lib | |
parent | e0beb54aac18de2f1c3f5076213f03bbe096cd59 (diff) |
Clean-up: Remove unused private variables (Issue #1621, #1622, #1624)
Diffstat (limited to 'gr-analog/lib')
-rw-r--r-- | gr-analog/lib/feedforward_agc_cc_impl.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gr-analog/lib/feedforward_agc_cc_impl.cc b/gr-analog/lib/feedforward_agc_cc_impl.cc index 9870c7c3c0..1a7ba7b9c4 100644 --- a/gr-analog/lib/feedforward_agc_cc_impl.cc +++ b/gr-analog/lib/feedforward_agc_cc_impl.cc @@ -54,12 +54,6 @@ namespace gr { { } - inline static float - mag_squared(gr_complex x) - { - return x.real() * x.real() + x.imag() * x.imag(); - } - // approximate sqrt(x^2 + y^2) inline static float envelope(gr_complex x) |