C++20 Port #5

Merged
kayomn merged 35 commits from cpp-port into main 2023-02-20 02:33:45 +01:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 3e4753f985 - Show all commits

View File

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