| 183 | // fails in msvc without function pointer |
| 184 | typedef float (*math_fp)(float); |
| 185 | TEST(TestOprLoop, TaylorSin) { |
| 186 | math_fp s = std::sin, c = std::cos; |
| 187 | test_taylor(sin_by_taylor, s, c); |
| 188 | } |
| 189 | |
| 190 | TEST(TestOprLoop, TaylorExp) { |
| 191 | math_fp e = std::exp; |
nothing calls this directly
no test coverage detected