We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c27263d commit e0af353Copy full SHA for e0af353
1 file changed
crates/c-api/include/wasmtime/val.h
@@ -311,7 +311,8 @@ typedef union wasmtime_val_raw {
311
// Rust.
312
static inline void __wasmtime_val_assertions() {
313
static_assert(sizeof(wasmtime_valunion_t) == 16, "should be 16-bytes large");
314
- static_assert(alignof(wasmtime_valunion_t) == 16, "should be 16-byte aligned");
+ static_assert(alignof(wasmtime_valunion_t) == 16,
315
+ "should be 16-byte aligned");
316
static_assert(sizeof(wasmtime_val_raw_t) == 16, "should be 16 bytes large");
317
static_assert(alignof(wasmtime_val_raw_t) == 16, "should be 16-byte aligned");
318
}
0 commit comments