| 101 | using ppair = std::pair<const char * , const void *>; |
| 102 | |
| 103 | struct test_visitor_two { |
| 104 | std::vector<ppair> result; |
| 105 | |
| 106 | template <typename T> |
| 107 | void operator()(const char * name, const T & t) { |
| 108 | result.emplace_back(ppair{name, static_cast<const void *>(&t)}); |
| 109 | } |
| 110 | }; |
| 111 | |
| 112 | |
| 113 |
nothing calls this directly
no outgoing calls
no test coverage detected