diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-18 12:40:46 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-18 12:40:46 -0400 |
commit | d36bb13f52b3899fd0f57e38f00d97e2c3a0f627 (patch) | |
tree | e1a2780f42bf82c6fcbbd9c2219d55dbc8f03c53 /memdict.hpp | |
parent | 74753670d582e4ceeaba383e4ce360eb13004a35 (diff) |
-Wconversion
Diffstat (limited to 'memdict.hpp')
-rw-r--r-- | memdict.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/memdict.hpp b/memdict.hpp index 22841c5..c88bc7d 100644 --- a/memdict.hpp +++ b/memdict.hpp @@ -46,6 +46,10 @@ public: virtual void writebyte(Addr addr, uint8_t value) noexcept final { dict[addr] = value; } + + virtual unsigned long int capacity() const noexcept final { + return sizeof(dict); + } }; #endif // ALEEFORTH_MEMDICT_HPP |