mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-04 13:31:26 +00:00
Ensures Sectors are move constructible (and still default constructible), and adds proper const qualifiers to Sector::Address.
This commit is contained in:
parent
3319a4f589
commit
8875982e1f
@ -27,7 +27,7 @@ struct Sector {
|
||||
struct Address {
|
||||
uint8_t track = 0, side = 0, sector = 0;
|
||||
|
||||
bool operator < (Address &rhs) {
|
||||
bool operator < (const Address &rhs) const {
|
||||
return ((track << 24) | (side << 8) | sector) < ((rhs.track << 24) | (rhs.side << 8) | rhs.sector);
|
||||
}
|
||||
};
|
||||
@ -39,6 +39,16 @@ struct Sector {
|
||||
bool has_data_crc_error = false;
|
||||
bool has_header_crc_error = false;
|
||||
bool is_deleted = false;
|
||||
|
||||
Sector() {}
|
||||
|
||||
Sector(const Sector &&rhs) :
|
||||
address(rhs.address),
|
||||
size(rhs.size),
|
||||
data(std::move(rhs.data)),
|
||||
has_data_crc_error(rhs.has_data_crc_error),
|
||||
has_header_crc_error(rhs.has_header_crc_error),
|
||||
is_deleted(rhs.is_deleted ){}
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user