We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d40aeea commit f84dbd4Copy full SHA for f84dbd4
1 file changed
libcc2rs-macros/src/state_machine.rs
@@ -67,8 +67,8 @@ impl GotoStateMachine {
67
}
68
69
70
- fn bailout(any: bool, flag: &Ident, stmt: TokenStream2) -> (TokenStream2, TokenStream2) {
71
- if !any {
+ fn bailout(should_emit: bool, flag: &Ident, stmt: TokenStream2) -> (TokenStream2, TokenStream2) {
+ if !should_emit {
72
return (TokenStream2::new(), TokenStream2::new());
73
74
(
0 commit comments