diff options
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)); } |