Skip to content

Commit f9c672f

Browse files
committed
Remove #[repr(packed)], fix #29
1 parent d9ff7db commit f9c672f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

capi/include/tendril.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void tendril_debug_dump(const tendril *t, FILE *stream);
102102
//// implementation details follow
103103
////
104104

105-
__attribute__((packed)) struct tendril_impl {
105+
struct tendril_impl {
106106
uintptr_t __ptr;
107107
uint32_t __a;
108108
uint32_t __b;

src/buf32.rs

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ pub const MAX_LEN: usize = u32::MAX as usize;
1616

1717
/// A buffer points to a header of type `H`, which is followed by `MIN_CAP` or more
1818
/// bytes of storage.
19-
#[repr(packed)]
2019
pub struct Buf32<H> {
2120
pub ptr: *mut H,
2221
pub len: u32,

src/tendril.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ pub enum SubtendrilError {
186186
///
187187
/// The maximum length of a `Tendril` is 4 GB. The library will panic if
188188
/// you attempt to go over the limit.
189-
#[repr(packed)]
189+
#[repr(C)]
190190
pub struct Tendril<F, A = NonAtomic>
191191
where F: fmt::Format,
192192
A: Atomicity,

0 commit comments

Comments
 (0)