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 /libalee/types.hpp | |
parent | 74753670d582e4ceeaba383e4ce360eb13004a35 (diff) |
-Wconversion
Diffstat (limited to 'libalee/types.hpp')
-rw-r--r-- | libalee/types.hpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/libalee/types.hpp b/libalee/types.hpp index f23f92e..95daee6 100644 --- a/libalee/types.hpp +++ b/libalee/types.hpp @@ -52,14 +52,20 @@ enum class Error : int { */ struct Word { - struct iterator; + Addr start; + Addr wend; + + constexpr explicit Word(Addr s = 0, Addr e = 0): + start(s), wend(e) {} - Addr start = 0; - Addr wend = 0; + static constexpr Word fromLength(Addr s, Addr l) { + return Word(s, s + l); + } - unsigned size() const noexcept; + Addr size() const noexcept; // Iterators provided for std::equal. + struct iterator; iterator begin(const Dictionary *); iterator end(const Dictionary *); |