Skip to content

Commit a1b9d4f

Browse files
committed
cargo +nightly fmt
1 parent 4692441 commit a1b9d4f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ir/var.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,7 @@ fn handle_function_macro(
139139
tokens: &[clang::ClangToken],
140140
callbacks: &dyn crate::callbacks::ParseCallbacks,
141141
) -> Result<(), ParseError> {
142-
let mut spelled =
143-
tokens.into_iter().map(clang::ClangToken::spelling);
142+
let mut spelled = tokens.into_iter().map(clang::ClangToken::spelling);
144143
let boundary = spelled
145144
.clone() // clone the iterator to avoid consuming elements
146145
.position(|s| s == b")");

0 commit comments

Comments
 (0)