Skip to content

Commit

Permalink
fix surviving ArchetypeFieldName
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Dec 20, 2024
1 parent 81cbd4f commit c77bd2a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/viewer/re_view/src/results_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use re_chunk_store::{Chunk, LatestAtQuery, RangeQuery, UnitChunkShared};
use re_log_types::external::arrow2::bitmap::Bitmap as Arrow2Bitmap;
use re_log_types::hash::Hash64;
use re_query::{LatestAtResults, RangeResults};
use re_types::ArchetypeFieldName;
use re_types_core::ComponentName;
use re_viewer_context::{DataResult, QueryContext, ViewContext};

Expand Down Expand Up @@ -543,7 +542,7 @@ impl<'a> HybridResultsChunkIter<'a> {
/// See [`Chunk::iter_slices_from_struct_field`] for more information.
pub fn slice_from_struct_field<S: 'a + re_chunk::ChunkComponentSlicer>(
&'a self,
field_name: &'a ArchetypeFieldName,
field_name: &'a str,
) -> impl Iterator<Item = ((TimeInt, RowId), S::Item<'a>)> + 'a {
self.chunks.iter().flat_map(|chunk| {
itertools::izip!(
Expand Down

0 comments on commit c77bd2a

Please sign in to comment.