Merge pull request #99 from halirutan/fix_missing_return_statement

Fix missing return statement in lambda
pull/100/head
yhirose 4 years ago committed by GitHub
commit ab9a09bb88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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