aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/persistent_list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/util/persistent_list.rs')
-rw-r--r--components/util/persistent_list.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/persistent_list.rs b/components/util/persistent_list.rs
index e78dc3daa1e..b49cd44cd8b 100644
--- a/components/util/persistent_list.rs
+++ b/components/util/persistent_list.rs
@@ -74,7 +74,7 @@ pub struct PersistentListIterator<'a,T> where T: 'a + Send + Sync {
entry: Option<&'a PersistentListEntry<T>>,
}
-impl<'a,T> Iterator for PersistentListIterator<'a,T> where T: Send + Sync {
+impl<'a,T> Iterator for PersistentListIterator<'a,T> where T: Send + Sync + 'static {
type Item = &'a T;
#[inline]