| 516 | } |
| 517 | |
| 518 | bool operator<(const FILETIME& ft1, const FILETIME& ft2) |
| 519 | { |
| 520 | return ::CompareFileTime(&ft1, &ft2) < 0; |
| 521 | } |
| 522 | |
| 523 | bool operator>=(const FILETIME& ft1, const FILETIME& ft2) |
| 524 | { |
nothing calls this directly
no outgoing calls
no test coverage detected