Skip to content

Commit

Permalink
Merge pull request #70 from moulins/fix-rootable-macro
Browse files Browse the repository at this point in the history
Fix `Rootable!` not compiling if not directly imported
  • Loading branch information
kyren authored Jun 1, 2023
2 parents 5c8bd12 + a3f139e commit 6e2677b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc-arena/src/arena.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ macro_rules! Rootable {
$crate::__DynRootable::<dyn for<$gc> $crate::Rootable<$gc, Root = $root>>
};
($root:ty) => {
Rootable!['gc => $root]
$crate::Rootable!['gc => $root]
};
}

Expand Down

0 comments on commit 6e2677b

Please sign in to comment.