1
Fork 0

use P<[Ident]> instead of Vec<Ident>

This commit is contained in:
DrMeepster 2023-04-16 14:21:11 -07:00
parent b92c2f792c
commit 631ea7cc15
3 changed files with 4 additions and 4 deletions

View file

@ -1471,7 +1471,7 @@ pub enum ExprKind {
InlineAsm(P<InlineAsm>),
/// Output of the `offset_of!()` macro.
OffsetOf(P<Ty>, Vec<Ident>),
OffsetOf(P<Ty>, P<[Ident]>),
/// A macro invocation; pre-expansion.
MacCall(P<MacCall>),