mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-09 05:06:17 +00:00
Fix internal global getter types (#3495)
This commit is contained in:
parent
380cd7b0e7
commit
56b42908a8
|
@ -4170,7 +4170,7 @@ wasm_func_type_get_result_valkind(WASMFuncType *const func_type,
|
||||||
}
|
}
|
||||||
|
|
||||||
wasm_valkind_t
|
wasm_valkind_t
|
||||||
wasm_global_type_get_valkind(const wasm_global_type_t global_type)
|
wasm_global_type_get_valkind(WASMGlobalType *const global_type)
|
||||||
{
|
{
|
||||||
bh_assert(global_type);
|
bh_assert(global_type);
|
||||||
|
|
||||||
|
@ -4178,7 +4178,7 @@ wasm_global_type_get_valkind(const wasm_global_type_t global_type)
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
wasm_global_type_get_mutable(const wasm_global_type_t global_type)
|
wasm_global_type_get_mutable(WASMGlobalType *const global_type)
|
||||||
{
|
{
|
||||||
bh_assert(global_type);
|
bh_assert(global_type);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user