replace uint32 with uint32_t etc.

This commit is contained in:
MITSUNARI Shigeo 2020-09-08 15:14:18 +09:00
parent c306b8e578
commit bb967ae752
17 changed files with 807 additions and 814 deletions

View file

@ -56,7 +56,7 @@ void test2()
void test3()
{
static struct EmptyAllocator : Xbyak::Allocator {
uint8 *alloc() { return 0; }
uint8_t *alloc() { return 0; }
} emptyAllocator;
struct Code : CodeGenerator {
Code() : CodeGenerator(8, 0, &emptyAllocator)