Fix missing return statement in lambda

pull/99/head
Patrick Scheibe 4 years ago
parent d2f2108fc5
commit 4abf5a5332
  1. 2
      peglib.h

@ -3138,6 +3138,8 @@ private:
case Loop::Type::oom: return oom(ope);
case Loop::Type::rep: // Regex-like repetition
return rep(ope, loop.range.first, loop.range.second);
default:
throw std::runtime_error("Unhandled enum constant");
}
}
};

Loading…
Cancel
Save