diff --git a/src/trace/implementations/mod.rs b/src/trace/implementations/mod.rs index 3f1db85a2..4521b58c3 100644 --- a/src/trace/implementations/mod.rs +++ b/src/trace/implementations/mod.rs @@ -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, + pub smol: Vec, /// Offsets that either do not fit in a `u32`, or are inserted after some offset that did not fit. - chonk: Vec, + pub chonk: Vec, } impl OffsetList {