Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/trace/implementations/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ use std::convert::TryInto;
#[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Debug, Abomonation)]
pub struct OffsetList {
/// Offsets that fit within a `u32`.
smol: Vec<u32>,
pub smol: Vec<u32>,
/// Offsets that either do not fit in a `u32`, or are inserted after some offset that did not fit.
chonk: Vec<u64>,
pub chonk: Vec<u64>,
}

impl OffsetList {
Expand Down