| 104 | } |
| 105 | |
| 106 | struct LessComp { |
| 107 | using is_transparent = void; |
| 108 | template <typename LhsT, typename RhsT> |
| 109 | bool operator()( |
| 110 | const LhsT &a, |
| 111 | const RhsT &b) const { |
| 112 | return GetDistance(a) < GetDistance(b); |
| 113 | } |
| 114 | }; |
| 115 | |
| 116 | std::vector<mapped_type> _vec; |
| 117 | }; |
no outgoing calls
no test coverage detected