Skip to content
Snippets Groups Projects
Commit c826b0b9 authored by ilor's avatar ilor
Browse files

Fix mistake in previous commit

parent 5bd6b3cb
Branches
No related merge requests found
......@@ -8,7 +8,7 @@ bool LeftLook::iterate(
Wccl::Position &p,
const Wccl::FunExecContext &context) const
{
for(int i = right; i >= left; ++i) {
for(int i = right; i >= left; --i) {
p.set_value(i);
if(evaluating_expr_->apply(context)->get_value()) {
return true;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment