mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2026-01-23 04:16:02 +00:00
Tidy up some exception specifications.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user