From 5824f837e1c78d97c4d68dadf141124c982f7463 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Tue, 18 Jul 2017 16:49:59 -0500 Subject: [PATCH] adapt to changes in rtfm-syntax --- macros/src/check.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/macros/src/check.rs b/macros/src/check.rs index b8e6edd8b8..1dac363f21 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,