aboutsummaryrefslogtreecommitdiff
path: root/macros/src/check.rs
diff options
context:
space:
mode:
Diffstat (limited to 'macros/src/check.rs')
-rw-r--r--macros/src/check.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/src/check.rs b/macros/src/check.rs
index 42dd3c9e..3cd112ac 100644
--- a/macros/src/check.rs
+++ b/macros/src/check.rs
@@ -2,7 +2,7 @@ use std::collections::HashMap;
use syn::{Ident, Path};
use syntax::check::{self, Idle, Init};
-use syntax::{self, Idents, Statics};
+use syntax::{self, Resources, Statics};
use syntax::error::*;
@@ -51,7 +51,7 @@ pub struct Task {
pub kind: Kind,
pub path: Path,
pub priority: u8,
- pub resources: Idents,
+ pub resources: Resources,
}
pub fn app(app: check::App) -> Result<App> {