diff options
author | Michael Droettboom <mdboom@gmail.com> | 2017-09-18 16:08:55 -0400 |
---|---|---|
committer | Michael Droettboom <mdboom@gmail.com> | 2017-09-21 17:17:47 -0400 |
commit | c9dafda03a4a143f4626726df7562077a7cdd64f (patch) | |
tree | dbe9ca3bbec26664ba3b93cb5c4e42493fffc024 /components/layout/persistent_list.rs | |
parent | 5c797d194346d5be3c55da51d82bfcd1031a51f5 (diff) | |
download | servo-c9dafda03a4a143f4626726df7562077a7cdd64f.tar.gz servo-c9dafda03a4a143f4626726df7562077a7cdd64f.zip |
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.
Diffstat (limited to 'components/layout/persistent_list.rs')
-rw-r--r-- | components/layout/persistent_list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/persistent_list.rs b/components/layout/persistent_list.rs index 210606f1d5d..e331550be60 100644 --- a/components/layout/persistent_list.rs +++ b/components/layout/persistent_list.rs @@ -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>>, } |