commit 40fd9d20143a2cdf00350122d464965eebea4318 parent a4e93477f4bd1416c36fff4dbd3b38af9ebe81f2 Author: [email protected] <[email protected]> Date: Mon, 17 Jun 2019 20:09:34 +0000 fir_filter alias Diffstat:
M | include/kfr/dsp/fir.hpp | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/include/kfr/dsp/fir.hpp b/include/kfr/dsp/fir.hpp @@ -220,5 +220,8 @@ protected: private: fir_state<T, U> state; }; + +template <typename T, typename U = T> +using fir_filter = filter_fir<T, U>; } // namespace CMT_ARCH_NAME } // namespace kfr