| 139 | // Some binary visitors for test |
| 140 | |
| 141 | struct test_eq_visitor { |
| 142 | bool result = true; |
| 143 | |
| 144 | template <typename T> |
| 145 | void operator()(const char *, const T & t1, const T & t2) { |
| 146 | result = result && (t1 == t2); |
| 147 | } |
| 148 | }; |
| 149 | |
| 150 | struct test_pair_visitor { |
| 151 | bool result = false; |
nothing calls this directly
no outgoing calls
no test coverage detected