Skip to content

Commit

Permalink
ffi feature also requires layout
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Sep 6, 2022
1 parent 7429b5c commit 4eefc8b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arrow/src/array/mod.rs
Expand Up @@ -194,8 +194,10 @@ pub use self::data::ArrayData;
pub use self::data::ArrayDataBuilder;
pub use self::data::ArrayDataRef;

#[cfg(any(feature = "ipc", feature = "ffi"))]
pub(crate) use self::data::layout;
#[cfg(feature = "ipc")]
pub(crate) use self::data::{layout, BufferSpec};
pub(crate) use self::data::BufferSpec;

pub use self::array_binary::BinaryArray;
pub use self::array_binary::LargeBinaryArray;
Expand Down

0 comments on commit 4eefc8b

Please sign in to comment.