| 467 | |
| 468 | template <class F> |
| 469 | static void visit_for_compare(const value& x, F f) |
| 470 | { |
| 471 | if(x.is_object()) |
| 472 | { |
| 473 | f(object_range(x.get_impl())); |
| 474 | } |
| 475 | else |
| 476 | { |
| 477 | x.visit_value(f); |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | template <class T> |
| 482 | const static T& compare_decay(const T& x) |
no test coverage detected