| 135 | }; |
| 136 | template<class Compare, class T> |
| 137 | void operator()(bool& result, const Value& rhs, Compare compare, T x) const { |
| 138 | visitValue(rhs, |
| 139 | std::bind(innerVisitor{}, std::ref(result), std::move(compare), x, std::placeholders::_1)); |
| 140 | } |
| 141 | }; |
| 142 | |
| 143 | template<class Compare> |
nothing calls this directly
no test coverage detected