Skip to content

Commit

Permalink
Make contents of OffsetList pub (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
antiguru committed Dec 1, 2023
1 parent 98a61c8 commit 9c5dcba
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 9c5dcba

Please sign in to comment.