Fix rust compiler warnings.

This commit is contained in:
Drew Galbraith 2024-07-28 18:14:18 -07:00
parent 1e073d5060
commit 19144f7be9
3 changed files with 8 additions and 6 deletions

View file

@ -13,6 +13,7 @@ pub enum TokenType {
}
#[derive(Debug)]
#[allow(dead_code)]
pub struct Token {
pub token_type: TokenType,
line: usize,