We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4692441 commit a1b9d4fCopy full SHA for a1b9d4f
src/ir/var.rs
@@ -139,8 +139,7 @@ fn handle_function_macro(
139
tokens: &[clang::ClangToken],
140
callbacks: &dyn crate::callbacks::ParseCallbacks,
141
) -> Result<(), ParseError> {
142
- let mut spelled =
143
- tokens.into_iter().map(clang::ClangToken::spelling);
+ let mut spelled = tokens.into_iter().map(clang::ClangToken::spelling);
144
let boundary = spelled
145
.clone() // clone the iterator to avoid consuming elements
146
.position(|s| s == b")");
0 commit comments