| 1 | #pragma once |
| 2 | |
| 3 | struct CylinderHead |
| 4 | { |
| 5 | bool operator==(const CylinderHead&) const = default; |
| 6 | std::strong_ordering operator<=>(const CylinderHead&) const = default; |
| 7 | |
| 8 | unsigned cylinder, head; |
| 9 | }; |
| 10 | |
| 11 | struct CylinderHeadSector |
| 12 | { |
no outgoing calls
no test coverage detected