Skip to content

Commit f84dbd4

Browse files
committed
Rename any to should_emit
1 parent d40aeea commit f84dbd4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libcc2rs-macros/src/state_machine.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ impl GotoStateMachine {
6767
}
6868
}
6969

70-
fn bailout(any: bool, flag: &Ident, stmt: TokenStream2) -> (TokenStream2, TokenStream2) {
71-
if !any {
70+
fn bailout(should_emit: bool, flag: &Ident, stmt: TokenStream2) -> (TokenStream2, TokenStream2) {
71+
if !should_emit {
7272
return (TokenStream2::new(), TokenStream2::new());
7373
}
7474
(

0 commit comments

Comments
 (0)