Tidy up some exception specifications.

This commit is contained in:
Adrian Conlon
2022-03-26 16:06:29 +00:00
parent 1a5df4c8a7
commit 9a5f9ccd1a
14 changed files with 11 additions and 25 deletions

View File

@@ -3,10 +3,10 @@
DEFINE_PIN_LEVEL_CHANGERS(POWER, Device);
EightBit::Device::Device(const Device& rhs) {
EightBit::Device::Device(const Device& rhs) noexcept {
POWER() = rhs.POWER();
}
bool EightBit::Device::operator==(const EightBit::Device& rhs) const {
bool EightBit::Device::operator==(const EightBit::Device& rhs) const noexcept {
return POWER() == rhs.POWER();
}