Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amanuel2 committed Jun 8, 2024
1 parent 250213a commit d1ab112
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/scanner/scanner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ namespace rift
default:
if (isDigit(c)) num();
else if (isAlpha(c)) identifier();
else rift::error::report(line, "scanToken", "Unorthodox Character");break;
else rift::error::report(line, "scanToken", "Unorthodox Character");
break;
};
}
}
Expand Down

0 comments on commit d1ab112

Please sign in to comment.