| 15 | } |
| 16 | |
| 17 | bool operator<(const DateRecord& lhs, const DateRecord& rhs) { |
| 18 | if (lhs.created_at < rhs.created_at) { |
| 19 | return true; |
| 20 | } |
| 21 | if (rhs.created_at < lhs.created_at) { |
| 22 | return false; |
| 23 | } |
| 24 | return false; |
| 25 | } |
| 26 | |
| 27 | bool operator>(const DateRecord& lhs, const DateRecord& rhs) { |
| 28 | return rhs < lhs; |
nothing calls this directly
no outgoing calls
no test coverage detected