Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ca8800f

Browse files
fix: fix no_std build
Signed-off-by: Henry Gressmann <[email protected]>
1 parent f6e214b commit ca8800f

File tree

1 file changed

+4
-1
lines changed
  • crates/tinywasm/src/interpreter

1 file changed

+4
-1
lines changed

crates/tinywasm/src/interpreter/simd.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
// WIP
1+
#[cfg(not(feature = "std"))]
2+
#[allow(unused_imports)]
3+
use super::no_std_floats::NoStdFloatExt;
24

5+
// WIP
36
struct V128([u8; 16]);
47

58
impl V128 {

0 commit comments

Comments
 (0)