From 9c5dcba70ea44a7c057e16c392628946d2b2db69 Mon Sep 17 00:00:00 2001 From: Moritz Hoffmann Date: Fri, 1 Dec 2023 14:11:30 -0500 Subject: [PATCH] Make contents of OffsetList pub (#440) --- src/trace/implementations/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {