Skip to content

Commit

Permalink
style: remove unnecessary space
Browse files Browse the repository at this point in the history
  • Loading branch information
v420v committed Nov 17, 2024
1 parent 59f47a9 commit 07affe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/parser.ibu
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ func parse_ty(p *Parser) *Type {

if strcmp(name, "i64") { ty = p.ty_i64; }
else if strcmp(name, "i32") { ty = p.ty_i32; }
else if strcmp(name, "i16") { ty = p.ty_i16; }
else if strcmp(name, "i16") { ty = p.ty_i16; }
else if strcmp(name, "i8") { ty = p.ty_i8; }
else if strcmp(name, "u64") { ty = p.ty_u64; }
else if strcmp(name, "u32") { ty = p.ty_u32; }
Expand Down

0 comments on commit 07affe0

Please sign in to comment.