From 69152efdad181c70fd794ecba5f5f48f23bc67bd Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 12 Nov 2023 11:13:20 -0500 Subject: msp430: reduce excess memory usage; trim linker script --- libalee/dictionary.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libalee') 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. -- cgit v1.2.3