Skip to content

Commit

Permalink
Add some allow(unused) attributes to fix the build pipeline (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
jannic authored May 28, 2024
1 parent 5365b46 commit 2675ff7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pio-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use std::collections::HashMap;

mod parser {
#![allow(clippy::all)]
#![allow(unused)]
include!(concat!(env!("OUT_DIR"), "/pio.rs"));
}

Expand Down Expand Up @@ -63,6 +64,7 @@ pub(crate) enum ParsedDirective<'input> {
},
WrapTarget,
Wrap,
#[allow(unused)]
LangOpt(&'input str),
}

Expand Down

0 comments on commit 2675ff7

Please sign in to comment.