Skip to content

Commit c2aa6d0

Browse files
committed
merge
1 parent 36c3fb7 commit c2aa6d0

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

src/mem/skiplist.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,6 @@ pub struct SkiplistIterator<C: Comparator, A: Arena> {
266266
}
267267

268268
impl<C: Comparator, A: Arena> Iterator for SkiplistIterator<C, A> {
269-
<<<<<<< HEAD
270-
271-
=======
272-
>>>>>>> remove unnecessary information
273269
type Key = Slice;
274270
type Value = Slice;
275271
/// Returns true whether the iterator is positioned at a valid node

src/sstable/block.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,6 @@ impl<C: Comparator> BlockIterator<C> {
218218
}
219219

220220
impl<C: Comparator> Iterator for BlockIterator<C> {
221-
<<<<<<< HEAD
222-
223-
=======
224-
>>>>>>> fix conflict changes
225221
type Key = Slice;
226222
type Value = Slice;
227223
#[inline]

src/sstable/mod.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -661,17 +661,11 @@ mod tests {
661661
}
662662

663663
impl Iterator for EntryIterator {
664-
<<<<<<< HEAD
665664

666665
type Key = Slice;
667666
type Value = Slice;
668667

669668

670-
=======
671-
type Key = Slice;
672-
type Value = Slice;
673-
674-
>>>>>>> remove unnecessary information
675669
fn valid(&self) -> bool {
676670
self.current < self.data.len()
677671
}

0 commit comments

Comments
 (0)