Skip to content

Commit 852bf4c

Browse files
authored
fix(macro): Add missing separator pipe in flags
Refs: #412
1 parent 1de5826 commit 852bf4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/macros/src/impl_.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ impl quote::ToTokens for FnBuilder {
388388
flags.push(quote! { ::ext_php_rs::flags::MethodFlags::Abstract });
389389
}
390390
quote! {
391-
(#builder, #(#flags)*)
391+
(#builder, #(#flags)|*)
392392
}
393393
.to_tokens(tokens);
394394
}

0 commit comments

Comments
 (0)