| 316 | |
| 317 | /** Strict less ordering by name of key only */ |
| 318 | struct KeyOrder { |
| 319 | bool operator()(const Entry& lhs, const Entry& rhs) const { |
| 320 | const static SI_STRLESS isLess = SI_STRLESS(); |
| 321 | return isLess(lhs.pItem, rhs.pItem); |
| 322 | } |
| 323 | }; |
| 324 | |
| 325 | /** Strict less ordering by order, and then name of key */ |
| 326 | struct LoadOrder { |
no outgoing calls
no test coverage detected