Skip to content

Commit

Permalink
chg: [v2] write method exposed
Browse files Browse the repository at this point in the history
Signed-off-by: qjerome <qjerome@rawsec.lu>
  • Loading branch information
qjerome committed Apr 30, 2024
1 parent bd476be commit c53282f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poppy/src/bloom/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl BloomFilter {
}

#[inline]
pub(crate) fn write<W: Write>(&self, w: &mut W) -> Result<(), Error> {
pub fn write<W: Write>(&self, w: &mut W) -> Result<(), Error> {
let mut w = BufWriter::new(w);

// writting version
Expand Down

0 comments on commit c53282f

Please sign in to comment.