mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Make tidy aware of Rust multiline strings
As a result of tighter and more correct handling of character literals, this now catches a few kinds of syntax involving lifetimes that were previously missed, so those have been updated.
This commit is contained in:
parent
5c797d1943
commit
c9dafda03a
6 changed files with 55 additions and 15 deletions
|
@ -69,7 +69,7 @@ impl<T> Clone for PersistentList<T> where T: Send + Sync {
|
|||
}
|
||||
}
|
||||
|
||||
pub struct PersistentListIterator<'a,T> where T: 'a + Send + Sync {
|
||||
pub struct PersistentListIterator<'a, T> where T: 'a + Send + Sync {
|
||||
entry: Option<&'a PersistentListEntry<T>>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue