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:
M | source/nord/n2x/n2xLib/n2xmc.h | | | 2 | +- |
M | source/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);