aboutsummaryrefslogtreecommitdiff
path: root/macros/src/check.rs
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2017-07-29 00:34:00 -0500
committerGravatar Jorge Aparicio <jorge@japaric.io> 2017-07-29 00:46:38 -0500
commit2d80f3631bc3bf382ae24c25dbf8ff33af2ad430 (patch)
tree549db01071e63ac232ab5781771fbb3993a9d822 /macros/src/check.rs
parente85d6e53c89cd1ea1da8826778c5a74154fb651d (diff)
downloadrtic-release/v0.1.tar.gz
rtic-release/v0.1.tar.zst
rtic-release/v0.1.zip
update examplesrelease/v0.1
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> {