| 39 | |
| 40 | template <int N = ORDER> |
| 41 | inline typename std::enable_if <N == 2, T>::type process(T x) noexcept { |
| 42 | T y = z[1] + x * b[0]; |
| 43 | z[1] = x * b[1] - y * a[1]; |
| 44 | return y; |
| 45 | } |
| 46 | |
| 47 | template <int N = ORDER> |
| 48 | inline typename std::enable_if <N == 3, T>::type process(T x) noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected