clang-tidy: fix issues (#26498)

This commit is contained in:
Jacob Dahl
2026-02-17 14:09:43 -09:00
committed by GitHub
parent 6b67ccb0ad
commit d5ddc9135d
7 changed files with 16 additions and 11 deletions
@@ -100,7 +100,7 @@ public:
// Direct Form II implementation
T delay_element_0{sample - _delay_element_1 *_a1 - _delay_element_2 * _a2};
const T output{delay_element_0 *_b0 + _delay_element_1 *_b1 + _delay_element_2 * _b2};
T output{delay_element_0 *_b0 + _delay_element_1 *_b1 + _delay_element_2 * _b2};
_delay_element_2 = _delay_element_1;
_delay_element_1 = delay_element_0;