diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-13 13:19:31 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-13 13:19:31 +0200 | 
| commit | 74d9f5e31428ef362033a63c10b781d943c5e5a5 (patch) | |
| tree | 71e11ed620fa1d76577df07846e910970fe9210b /filter-ewma2 | |
| parent | 41a92ea7401c89c5696b3e1b2fa239458a92ff73 (diff) | |
many: remove unneeded implicit type conversion double <-> float
Diffstat (limited to 'filter-ewma2')
| -rw-r--r-- | filter-ewma2/ftnoir_filter_ewma2.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/filter-ewma2/ftnoir_filter_ewma2.cpp b/filter-ewma2/ftnoir_filter_ewma2.cpp index c09fb912..6f9e428c 100644 --- a/filter-ewma2/ftnoir_filter_ewma2.cpp +++ b/filter-ewma2/ftnoir_filter_ewma2.cpp @@ -49,7 +49,7 @@ void FTNoIR_Filter::filter(const double *input, double *output)          }      }      // Get the time in seconds since last run and restart the timer. -    auto dt = timer.restart() / 1000.0f; +    const double dt = timer.restart() / 1000;      // Calculate delta_alpha and noise_alpha from dt.      double delta_alpha = dt/(dt + delta_RC);      double noise_alpha = dt/(dt + noise_RC);  | 
