| 30 | uint32_t index; |
| 31 | |
| 32 | struct Comparator { |
| 33 | bool operator()(const DexFileReference& a, const DexFileReference& b) const { |
| 34 | if (a.dex_file != b.dex_file) { |
| 35 | return a.dex_file < b.dex_file; |
| 36 | } |
| 37 | return a.index < b.index; |
| 38 | } |
| 39 | }; |
| 40 | }; |
| 41 | |
| 42 | // Default comparators, compares the indicies, not the backing data. |