| 578 | |
| 579 | template<class T> |
| 580 | void |
| 581 | check_udt( |
| 582 | T const& t, |
| 583 | string_view s, |
| 584 | string_view name = {}) |
| 585 | { |
| 586 | try |
| 587 | { |
| 588 | grind(s, t, name); |
| 589 | } |
| 590 | catch(std::exception const&) |
| 591 | { |
| 592 | BOOST_TEST_FAIL(); |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | void |
| 597 | testVectors() |
nothing calls this directly
no outgoing calls
no test coverage detected