From 6d7fc70810ac7cfb63c075e536c4eaa58b49fe8a Mon Sep 17 00:00:00 2001 From: Adrian Conlon <98398945+AdrianConlon@users.noreply.github.com> Date: Thu, 11 Jan 2024 09:16:40 +0000 Subject: [PATCH] Signals can throw exceptions. --- inc/ClockedChip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/ClockedChip.h b/inc/ClockedChip.h index 66bd89a..a58fde1 100644 --- a/inc/ClockedChip.h +++ b/inc/ClockedChip.h @@ -14,7 +14,7 @@ namespace EightBit { [[nodiscard]] constexpr auto cycles() const noexcept { return m_cycles; } - void tick(int extra = 1) noexcept { + void tick(int extra = 1) { for (int i = 0; i < extra; ++i) { ++m_cycles; Ticked.fire();