remove unneeded argument

This commit is contained in:
Folkert 2021-03-12 02:48:07 +01:00
parent 362459b647
commit 4e4854ceaa
10 changed files with 24 additions and 24 deletions

View file

@ -27,7 +27,7 @@ pub enum Either<First, Second> {
}
impl<'a> State<'a> {
pub fn new_in(arena: &'a Bump, bytes: &'a [u8]) -> State<'a> {
pub fn new(bytes: &'a [u8]) -> State<'a> {
State {
bytes,
line: 0,