Skip to content

Commit

Permalink
Suppress clippy unused warning (#269)
Browse files Browse the repository at this point in the history
The field will be used later.

Signed-off-by: Anand Krishnamoorthi <[email protected]>
  • Loading branch information
anakrish authored Jun 18, 2024
1 parent df98c8d commit 45627aa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ pub struct Analyzer {

#[derive(Debug, Clone)]
pub struct Schedule {
#[allow(unused)]
pub scopes: BTreeMap<Ref<Query>, Scope>,
pub order: BTreeMap<Ref<Query>, Vec<u16>>,
}
Expand Down

0 comments on commit 45627aa

Please sign in to comment.