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 /libalee/state.cpp | |
parent | dcd5e792b1d84afd1bea9780781674b6e6ad8dc3 (diff) |
linting; reduce msp430 binary size
Diffstat (limited to 'libalee/state.cpp')
-rw-r--r-- | libalee/state.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libalee/state.cpp b/libalee/state.cpp index ea6c601..b3c98b1 100644 --- a/libalee/state.cpp +++ b/libalee/state.cpp @@ -55,11 +55,11 @@ State::Error State::execute(Addr addr) std::size_t State::size() const noexcept { - return std::distance(dstack, static_cast<const Cell *>(dsp)) + 1; + return std::distance(dstack, static_cast<const Cell *>(dsp)); } std::size_t State::rsize() const noexcept { - return std::distance(rstack, static_cast<const Cell *>(rsp)) + 1; + return std::distance(rstack, static_cast<const Cell *>(rsp)); } |