diff --git a/profiling/src/collections/string_table/mod.rs b/profiling/src/collections/string_table/mod.rs index ccdf8224e..24f19810e 100644 --- a/profiling/src/collections/string_table/mod.rs +++ b/profiling/src/collections/string_table/mod.rs @@ -184,7 +184,10 @@ impl StringTableIter { } impl LendingIterator for StringTableIter { - type Item<'a> = &'a str where Self: 'a; + type Item<'a> + = &'a str + where + Self: 'a; fn next(&mut self) -> Option> { self.iter.next()