diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-12 11:13:20 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-12 11:13:20 -0500 |
commit | 69152efdad181c70fd794ecba5f5f48f23bc67bd (patch) | |
tree | bebf4f6429c086b9b99336f5064aa3274a072302 /libalee | |
parent | f8f73362a8d1df18bcc48eb8fb1945ad74f30163 (diff) |
msp430: reduce excess memory usage; trim linker script
Diffstat (limited to 'libalee')
-rw-r--r-- | libalee/dictionary.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp index 2b7afdf..96db2ea 100644 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@ -37,9 +37,8 @@ * - 0+ bytes of entry's data... */ -class Dictionary +struct Dictionary { -public: /** * The beginning of the dictionary is used for "internal" variables. */ @@ -129,7 +128,7 @@ public: return std::equal(b1, e1, b2, eqchars); } - virtual ~Dictionary() = default; + virtual ~Dictionary() {}; private: // Case-insensitive comparison. |