diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-10-25 12:33:25 +0200 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-10-25 12:33:25 +0200 |
| commit | ca8800f7a00bdf1745c781839c583519dac8a59d (patch) | |
| tree | fc7d29a0d3738ea0a7ca21726f7b5a5d4a9c288b /crates | |
| parent | f6e214ba050010b9566e7f2a99cfe370dc49ce43 (diff) | |
fix: fix no_std build
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/tinywasm/src/interpreter/simd.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/tinywasm/src/interpreter/simd.rs b/crates/tinywasm/src/interpreter/simd.rs index bc2f402..05562c6 100644 --- a/crates/tinywasm/src/interpreter/simd.rs +++ b/crates/tinywasm/src/interpreter/simd.rs @@ -1,5 +1,8 @@ -// WIP +#[cfg(not(feature = "std"))] +#[allow(unused_imports)] +use super::no_std_floats::NoStdFloatExt; +// WIP struct V128([u8; 16]); impl V128 { |
