diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2017-07-18 16:49:59 -0500 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2017-07-18 16:49:59 -0500 |
| commit | 5824f837e1c78d97c4d68dadf141124c982f7463 (patch) | |
| tree | 46cfc50793014d2bc50f0f835c363f4497b7f7ec /macros/src/check.rs | |
| parent | 1f1cf84ab41ec26ac58c31260667f97507def0d0 (diff) | |
adapt to changes in rtfm-syntax
Diffstat (limited to 'macros/src/check.rs')
| -rw-r--r-- | macros/src/check.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/macros/src/check.rs b/macros/src/check.rs index b8e6edd..1dac363 100644 --- a/macros/src/check.rs +++ b/macros/src/check.rs @@ -1,14 +1,13 @@ use std::collections::HashMap; -use quote::Tokens; -use syn::Ident; +use syn::{Ident, Path}; use syntax::check::{self, Idle, Init}; use syntax::{self, Idents, Statics}; use syntax::error::*; pub struct App { - pub device: Tokens, + pub device: Path, pub idle: Idle, pub init: Init, pub resources: Statics, |
