Skip to content

Commit 14bfab1

Browse files
authored
Merge pull request #163 from matthias-t/patch-1
Use $crate when recursing in object! macro
2 parents bce506a + aa60bef commit 14bfab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ macro_rules! object {
315315
//
316316
// In this implementation, key/value pairs separated by commas.
317317
{ $( $key:expr => $value:expr ),* } => {
318-
object!( $(
318+
$crate::object!( $(
319319
$key => $value,
320320
)* )
321321
};

0 commit comments

Comments
 (0)