mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-28 10:41:12 +00:00
Change token's tri_compare functions to return std::strong_ordering, which is not convertible to bool and therefore not suspect to being misused where a less-compare is expected. Two of the users (ring_position and decorated_key) have to undo the conversion, since they still return int. A follow up will convert them too. Ref #1449.