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 df6892b commit 136c97aCopy full SHA for 136c97a
src/lib.rs
@@ -234,7 +234,8 @@ macro_rules! _cssparser_internal__to_lowercase {
234
let mut buffer: [u8; MAX_LENGTH] = unsafe {
235
::std::mem::uninitialized()
236
};
237
- let $output = $crate::_internal__to_lowercase(&mut buffer, $input);
+ let input: &str = $input;
238
+ let $output = $crate::_internal__to_lowercase(&mut buffer, input);
239
}
240
241
0 commit comments