| 35 | constexpr auto kProfileMusicSliceLimit = 100; |
| 36 | |
| 37 | struct LocationKey { |
| 38 | uint64 type; |
| 39 | uint64 id; |
| 40 | |
| 41 | inline bool operator<(const LocationKey &other) const { |
| 42 | return std::tie(type, id) < std::tie(other.type, other.id); |
| 43 | } |
| 44 | }; |
| 45 | |
| 46 | LocationKey ComputeLocationKey(const Data::FileLocation &value) { |
| 47 | auto result = LocationKey(); |
no outgoing calls
no test coverage detected