forked from AbleOS/ableos
fixed warnings
This commit is contained in:
parent
39f7d5aba4
commit
86e1020bc7
|
@ -5,9 +5,7 @@ use std::io::Read;
|
||||||
|
|
||||||
use self::parser::parse;
|
use self::parser::parse;
|
||||||
|
|
||||||
use {
|
use logos::Logos;
|
||||||
logos::{Lexer, Logos},
|
|
||||||
};
|
|
||||||
|
|
||||||
#[derive(Logos, Debug, PartialEq, Clone)]
|
#[derive(Logos, Debug, PartialEq, Clone)]
|
||||||
#[logos(skip r"[ \t\n\f]+")] // Ignore this regex pattern between tokens
|
#[logos(skip r"[ \t\n\f]+")] // Ignore this regex pattern between tokens
|
||||||
|
|
|
@ -117,8 +117,8 @@ fn build(name: String) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn build_program(name: String) {}
|
pub fn build_program(_name: String) {}
|
||||||
pub fn build_library(name: String) {}
|
pub fn build_library(_name: String) {}
|
||||||
|
|
||||||
fn help() {
|
fn help() {
|
||||||
println!(
|
println!(
|
||||||
|
|
Loading…
Reference in a new issue