diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-10-17 19:26:24 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-10-17 20:04:22 +0200 |
| commit | e21822665591dc19766275da1e185215a6b945ef (patch) | |
| tree | 7788e211c3c33c8b5a8ad7d5eb7574e33631eb16 /macros/src/lib.rs | |
| parent | 4fd031a256b2ecfe524859d5599fafb386395572 (diff) | |
Merge some modules
Diffstat (limited to 'macros/src/lib.rs')
| -rw-r--r-- | macros/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 052e7fcf..62e27a09 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -69,12 +69,12 @@ fn expand(stream: TokenStream2, mut impl_block: syn::ItemImpl) -> Result<TokenSt use std::any::TypeId; use std::marker::PhantomData; use once_cell::sync::Lazy; - use crate::{eval, model}; + use crate::model; use super::*; #impl_block - impl<#params> eval::Node for #self_ty { + impl<#params> model::Node for #self_ty { const SHOWABLE: bool = #showable; #construct #set |
