| 3739 | myfunc() : exprtk::ifunction<T>(2) {} |
| 3740 | |
| 3741 | inline T operator()(const T& v1, const T& v2) |
| 3742 | { |
| 3743 | return T(1) + (v1 * v2) / T(3); |
| 3744 | } |
| 3745 | }; |
| 3746 | |
| 3747 | #define define_free_functions(N,Type) \ |
nothing calls this directly
no test coverage detected