| 148 | }; |
| 149 | |
| 150 | struct test_pair_visitor { |
| 151 | bool result = false; |
| 152 | |
| 153 | template <typename T> |
| 154 | void operator()(const char *, const T &, const T &) {} |
| 155 | |
| 156 | void operator()(const char *, const int & x, const int & y) { |
| 157 | result = result || (x > y); |
| 158 | } |
| 159 | }; |
| 160 | |
| 161 | // Interface for binary visitors |
| 162 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected