Migrate s32->int, u32->uint; fix dolphin/types.h

Former-commit-id: 7eb08b6ee8
This commit is contained in:
2022-09-05 00:01:13 -04:00
parent 5726400667
commit 0f25a3c8d4
73 changed files with 413 additions and 410 deletions

View File

@@ -8,7 +8,7 @@
namespace rstl {
struct rmemory_allocator {
template < typename T >
static void allocate(T*& out, s32 sz) {
static void allocate(T*& out, int sz) {
out = reinterpret_cast< T* >(new u8[sz]);
}
template < typename T >