pull/2/head
Mark 2023-03-26 12:13:37 -07:00
parent a40ebb7500
commit 47e8a021f9
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ use crate::parser::ParserError;
use crate::parser::Operator; use crate::parser::Operator;
fn treeify_binary( fn treeify_binary(
mut i: usize, i: usize,
g_inner: &mut VecDeque<Token>, g_inner: &mut VecDeque<Token>,
left_associative: bool left_associative: bool
) -> Result<(), (LineLocation, ParserError)> { ) -> Result<(), (LineLocation, ParserError)> {