1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Reintroduces missing noexcept specifier.

This commit is contained in:
Thomas Harte 2017-09-01 20:51:31 -04:00
parent b034d4e6f8
commit e6ac939ae0

View File

@ -211,7 +211,7 @@ void ProcessorBase::set_value_of_register(Register r, uint16_t value) {
}
}
PartialMachineCycle::PartialMachineCycle(const PartialMachineCycle &rhs) :
PartialMachineCycle::PartialMachineCycle(const PartialMachineCycle &rhs) noexcept :
operation(rhs.operation),
length(rhs.length),
address(rhs.address),