Suppress clippy unused warning (#269)

The field will be used later.

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2024-06-18 13:28:02 -04:00
committed by GitHub
parent df98c8d168
commit 45627aa64a

View File

@@ -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>>,
}