| 1307 | |
| 1308 | template <typename T> |
| 1309 | struct test_xy |
| 1310 | { |
| 1311 | test_xy(const std::string& e, const T& v0, const T& v1, const T& r) |
| 1312 | : expr(e) |
| 1313 | , x(v0) |
| 1314 | , y(v1) |
| 1315 | , result(r) |
| 1316 | {} |
| 1317 | |
| 1318 | std::string expr; |
| 1319 | T x; |
| 1320 | T y; |
| 1321 | T result; |
| 1322 | }; |
| 1323 | |
| 1324 | template <typename T> |
| 1325 | struct test_xyzw |
nothing calls this directly
no outgoing calls
no test coverage detected