diff --git a/components/style/bloom.rs b/components/style/bloom.rs index dbcb75e645e..5c7f753a6c8 100644 --- a/components/style/bloom.rs +++ b/components/style/bloom.rs @@ -88,14 +88,15 @@ impl PushedElement { fn new(el: E, num_hashes: usize) -> Self { PushedElement { element: unsafe { SendElement::new(el) }, - num_hashes: num_hashes, + num_hashes, } } } fn each_relevant_element_hash(element: E, mut f: F) - where E: TElement, - F: FnMut(u32), +where + E: TElement, + F: FnMut(u32), { f(element.get_local_name().get_hash()); f(element.get_namespace().get_hash());