diff options
Diffstat (limited to 'src/forest.rs')
-rw-r--r-- | src/forest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/forest.rs b/src/forest.rs index d4f5083..28ccb24 100644 --- a/src/forest.rs +++ b/src/forest.rs @@ -5,7 +5,7 @@ use acap::kd::FlatKdTree; use acap::knn::{NearestNeighbors, Neighborhood}; use acap::vp::FlatVpTree; -use std::iter::{self, Extend, FromIterator}; +use std::iter; /// The number of bits dedicated to the flat buffer. const BUFFER_BITS: usize = 6; |