| 133 | } |
| 134 | |
| 135 | uint64_t PointUToUint64Obsolete(m2::PointU const & pt) |
| 136 | { |
| 137 | uint64_t const res = bits::BitwiseMerge(pt.x, pt.y); |
| 138 | ASSERT_EQUAL(pt, Uint64ToPointUObsolete(res), ()); |
| 139 | return res; |
| 140 | } |
| 141 | |
| 142 | m2::PointU Uint64ToPointUObsolete(int64_t v) |
| 143 | { |