fix: fix this mess

I am stupid
I am stupid
I am stupid
I can't believe how f- ricking stupid I am
This commit is contained in:
2026-07-19 22:04:50 +02:00
parent 6dce7016ce
commit 549af109b9
5 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ thing_h executor::pop_thing() {
if (m_frames.top().stackBase >= m_stack.size()) throw stack_underflow();
thing_h top = std::move(m_stack.top());
m_stack.pop();
return top;
return std::move(top);
}
thing_h executor::thing() const {