mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-09-08 10:51:16 +00:00
Fix unused param warning when GC is enabled (#3814)
This commit is contained in:
parent
e87f7a920d
commit
86926aa9d2
|
@ -1238,6 +1238,9 @@ wasm_value_type_size_internal(uint8 value_type, uint8 pointer_size)
|
||||||
else {
|
else {
|
||||||
bh_assert(0);
|
bh_assert(0);
|
||||||
}
|
}
|
||||||
|
#if WASM_ENABLE_GC == 0
|
||||||
|
(void)pointer_size;
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user