wasmer_byte_array visibility revert (see PR: "wasmer-c-api-changes: making wasmer_byte_array fields public #589")

This commit is contained in:
Yaron Wittenstein 2019-07-29 13:41:28 +03:00
parent f04d552361
commit 10fc660aad

View File

@ -118,6 +118,6 @@ pub struct wasmer_limit_option_t {
#[repr(C)] #[repr(C)]
pub struct wasmer_byte_array { pub struct wasmer_byte_array {
pub bytes: *const u8, bytes: *const u8,
pub bytes_len: u32, bytes_len: u32,
} }