mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
style: Remove unnecessary mut usage.
This commit is contained in:
parent
ca756a8550
commit
4b761848a0
1 changed files with 1 additions and 1 deletions
|
@ -1382,7 +1382,7 @@ fn report_css_errors(
|
|||
selectors: Option<&SelectorList<SelectorImpl>>,
|
||||
errors: &mut SmallParseErrorVec,
|
||||
) {
|
||||
for (mut error, slice, property) in errors.drain() {
|
||||
for (error, slice, property) in errors.drain() {
|
||||
report_one_css_error(context, Some(block), selectors, error, slice, property)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue