This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 9b0577b  expose buffer ops (#809)
9b0577b is described below

commit 9b0577b268cca9f9938ba656cd8b8c90260840a7
Author: Ben Chambers <[email protected]>
AuthorDate: Thu Sep 30 12:09:46 2021 -0700

    expose buffer ops (#809)
---
 arrow/src/buffer/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow/src/buffer/mod.rs b/arrow/src/buffer/mod.rs
index d8f63958..cf0461b 100644
--- a/arrow/src/buffer/mod.rs
+++ b/arrow/src/buffer/mod.rs
@@ -23,7 +23,7 @@ pub use immutable::*;
 mod mutable;
 pub use mutable::*;
 mod ops;
-pub(super) use ops::*;
+pub use ops::*;
 
 use crate::error::{ArrowError, Result};
 use std::ops::{BitAnd, BitOr, Not};

Reply via email to