| 18 | |
| 19 | template <Fix16 (Fix16::*func)(const Fix16&) const> |
| 20 | static Fix16 fix16_func2(Fix16 f, Fix16 y) |
| 21 | { |
| 22 | return (f.*func)(y); |
| 23 | } |
| 24 | |
| 25 | // Constant for our trigonometry function argument. |
| 26 | // Stored as volatile to force the compiler to read them and |
nothing calls this directly
no outgoing calls
no test coverage detected