| 506 | } // namespace Win32 |
| 507 | |
| 508 | bool operator==(const FILETIME& ft1, const FILETIME& ft2) |
| 509 | { |
| 510 | return ::CompareFileTime(&ft1, &ft2) == 0; |
| 511 | } |
| 512 | |
| 513 | bool operator!=(const FILETIME& ft1, const FILETIME& ft2) |
| 514 | { |
nothing calls this directly
no outgoing calls
no test coverage detected