Skip to content

Commit 89fd09b

Browse files
committed
Emit lifetime parameters in ToTokens of Type
1 parent ab1ac88 commit 89fd09b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syntax/tokens.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ impl ToTokens for Type {
1818
let span = ident.rust.span();
1919
tokens.extend(quote_spanned!(span=> ::cxx::));
2020
}
21-
ident.rust.to_tokens(tokens);
21+
ident.to_tokens(tokens);
2222
}
2323
Type::RustBox(ty)
2424
| Type::UniquePtr(ty)

0 commit comments

Comments
 (0)