gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 8975766327dcefffcc3f3a01e021069e1ffda165
parent 8006ba338f5afac2dd3b67a006f6af1a1dc77049
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun,  2 Feb 2025 12:10:20 +0100

microcontroller classes should be final

Diffstat:
Msource/nord/n2x/n2xLib/n2xmc.h | 2+-
Msource/xtLib/xtUc.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/nord/n2x/n2xLib/n2xmc.h b/source/nord/n2x/n2xLib/n2xmc.h @@ -13,7 +13,7 @@ namespace n2x { class Rom; - class Microcontroller : public mc68k::Mc68k + class Microcontroller final : public mc68k::Mc68k { public: explicit Microcontroller(Hardware& _hardware, const Rom& _rom); diff --git a/source/xtLib/xtUc.h b/source/xtLib/xtUc.h @@ -17,7 +17,7 @@ namespace xt using xtHdi08A = mc68k::Hdi08Periph<0xfe000>; - class XtUc : public mc68k::Mc68k + class XtUc final : public mc68k::Mc68k { public: XtUc(const Rom& _rom);