aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/state.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
commitd36bb13f52b3899fd0f57e38f00d97e2c3a0f627 (patch)
treee1a2780f42bf82c6fcbbd9c2219d55dbc8f03c53 /libalee/state.cpp
parent74753670d582e4ceeaba383e4ce360eb13004a35 (diff)
-Wconversion
Diffstat (limited to 'libalee/state.cpp')
-rw-r--r--libalee/state.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libalee/state.cpp b/libalee/state.cpp
index bfd29d1..b19d291 100644
--- a/libalee/state.cpp
+++ b/libalee/state.cpp
@@ -81,11 +81,11 @@ void State::reset()
std::size_t State::size() const noexcept
{
- return std::distance(dstack, static_cast<const Cell *>(dsp));
+ return dsp - dstack;
}
std::size_t State::rsize() const noexcept
{
- return std::distance(rstack, static_cast<const Cell *>(rsp));
+ return rsp - rstack;
}