From b1b8f94ec20046fd5345087782991c45bb1ef5cb Mon Sep 17 00:00:00 2001 From: Stephen D <webmaster@scd31.com> Date: Tue, 11 Mar 2025 15:00:24 -0400 Subject: [PATCH] clean up warning --- src/token.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/token.rs b/src/token.rs index 9f51ce2..c812381 100644 --- a/src/token.rs +++ b/src/token.rs @@ -17,16 +17,11 @@ pub enum TokenType { pub struct Token { pub line: usize, - pub lexeme: String, pub token_type: TokenType, } impl Token { - pub fn new(token_type: TokenType, lexeme: String, line: usize) -> Self { - Self { - line, - lexeme, - token_type, - } + pub fn new(token_type: TokenType, _lexeme: String, line: usize) -> Self { + Self { line, token_type } } } -- GitLab