Skip to content

Commit 12de123

Browse files
committed
Fix wasm codec export expansion
1 parent 5779089 commit 12de123

File tree

1 file changed

+3
-1
lines changed
  • crates/numcodecs-wasm-guest/src

1 file changed

+3
-1
lines changed

crates/numcodecs-wasm-guest/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ macro_rules! export_codec {
8484
const _: () = {
8585
type Codec = $codec;
8686

87-
$crate::bindings::export!(Codec with_types_in $crate::bindings);
87+
$crate::bindings::export!(
88+
Codec with_types_in $crate::bindings
89+
);
8890
};
8991

9092
const _: () = {

0 commit comments

Comments
 (0)