diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-04-24 16:38:11 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-04-24 16:42:19 +0200 |
| commit | 89927d7de069169eeecfa091d6b77408b69fe188 (patch) | |
| tree | bd9172a9935f2e15214d82c36d2e411c3623b7f5 /macros | |
| parent | 8fbb11fc05b3313bf102c1f23693290661d00863 (diff) | |
`StyleSlot`, `KeyId` and `NodeId`
Diffstat (limited to 'macros')
| -rw-r--r-- | macros/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 8614a26f..15925df7 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -249,12 +249,12 @@ fn process_const( const NAME: &'static str = #name; - fn node() -> TypeId { - TypeId::of::<#self_ty>() + fn node() -> model::NodeId { + model::NodeId::of::<#self_ty>() } fn get( - chain: StyleChain<'a>, + chain: model::StyleChain<'a>, mut values: impl Iterator<Item = &'a Self::Value>, ) -> Self::Output { #get |
