This commit is contained in:
Chris West (Faux) 2017-07-14 18:15:50 +01:00
parent 16aa763845
commit b1bb2ef8ca
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ fn main() {
source_versions
.entry(version.source_package())
.or_insert_with(|| HashSet::new())
.or_insert_with(HashSet::new)
.insert(version.source_version());
}
}

View File

@ -52,7 +52,7 @@ impl<R> CIterator<R>
where
R: RawIterator,
{
pub fn next<'i>(&mut self) -> Option<Borrowed<R>> {
pub fn next(&mut self) -> Option<Borrowed<R>> {
if self.raw.is_end() {
return None;
}