diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-09 09:16:12 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-09 09:16:12 -0500 |
commit | 970bbb473c81975d3c7366260c8228fd4fcc8c4d (patch) | |
tree | 518c5e7290ffe66e84ba1c8e7df0c42f849d0857 /memdict.hpp | |
parent | dcd5e792b1d84afd1bea9780781674b6e6ad8dc3 (diff) |
linting; reduce msp430 binary size
Diffstat (limited to 'memdict.hpp')
-rw-r--r-- | memdict.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/memdict.hpp b/memdict.hpp index 398af0f..22841c5 100644 --- a/memdict.hpp +++ b/memdict.hpp @@ -28,7 +28,7 @@ constexpr unsigned long int MemDictSize = MEMDICTSIZE; class MemDict : public Dictionary { - uint8_t dict[MemDictSize]; + uint8_t dict[MemDictSize] = {0}; public: virtual Cell read(Addr addr) const noexcept final { |