Fix incorrect type aliases in coral library

This commit is contained in:
kayomn 2023-02-20 00:35:29 +00:00
parent 924780d92c
commit 3e4753f985
1 changed files with 2 additions and 2 deletions

View File

@ -42,9 +42,9 @@ export namespace coral {
usize const i32_max = 0xffffffff; usize const i32_max = 0xffffffff;
using u64 = uint32_t; using u64 = uint64_t;
using i64 = uint32_t; using i64 = uint64_t;
using f32 = float; using f32 = float;