| 1178 | } |
| 1179 | |
| 1180 | struct OpAdd { |
| 1181 | template<typename T> T operator()(T a, T b) const { return a + b; } |
| 1182 | }; |
| 1183 | struct OpSub { |
| 1184 | template<typename T> T operator()(T a, T b) const { return a - b; } |
| 1185 | }; |
no outgoing calls
no test coverage detected