Skip to content

Commit 0c9af75

Browse files
committed
wip
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 8fe22c9 commit 0c9af75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vortex-array/src/array/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ pub mod display;
55
mod operator;
66
pub mod session;
77
pub mod transform;
8+
mod traversal;
89
mod visitor;
910

1011
use std::any::Any;
@@ -647,7 +648,7 @@ impl<V: VTable> ArrayEq for ArrayAdapter<V> {
647648
}
648649

649650
impl<V: VTable> ArrayVisitor for ArrayAdapter<V> {
650-
fn children<'a>(&'a self) -> Vec<&'a dyn Array> {
651+
fn children(&self) -> Vec<&dyn Array> {
651652
struct ChildrenCollector<'a> {
652653
children: Vec<&'a dyn Array>,
653654
}

0 commit comments

Comments
 (0)