diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-12 14:38:30 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-12 14:38:30 -0500 |
commit | cdf19490df966f53e8c89677296e6a8b34cff497 (patch) | |
tree | 154e1f9784fa1d55d49767c4c6391bf91cf0d556 /splitmemdictrw.hpp | |
parent | 69152efdad181c70fd794ecba5f5f48f23bc67bd (diff) |
no more cstring; 16mhz/115200 msp430; fix dict init
Diffstat (limited to 'splitmemdictrw.hpp')
-rw-r--r-- | splitmemdictrw.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/splitmemdictrw.hpp b/splitmemdictrw.hpp index 7fcb5cd..dc02ab9 100644 --- a/splitmemdictrw.hpp +++ b/splitmemdictrw.hpp @@ -40,7 +40,6 @@ public: return *this; } - virtual Cell read(Addr addr) const noexcept final { if (addr < LON) return *reinterpret_cast<const Cell *>(lodict + addr); @@ -72,6 +71,9 @@ public: virtual unsigned long int capacity() const noexcept final { return LON + HIN; } + +private: + virtual ~SplitMemDictRW() override {}; }; #endif // ALEEFORTH_SPLITMEMDICTRW_HPP |