mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Fix 32-bit builds.
This commit is contained in:
parent
aae58fbc3a
commit
cbea6d7852
@ -25,13 +25,11 @@ using elf_sword = int32_t;
|
||||
#if __WORDSIZE == 32
|
||||
using elf_addr = uint32_t;
|
||||
using elf_off = uint32_t;
|
||||
using elf_wxword = uint32_t;
|
||||
using elf_xword = uint32_t;
|
||||
#else
|
||||
using elf_addr = uint64_t;
|
||||
using elf_off = uint64_t;
|
||||
using elf_xword = uint64_t;
|
||||
using elf_sxword = int64_t;
|
||||
using elf_wxword = uint64_t;
|
||||
#endif
|
||||
|
||||
struct elf_ehdr
|
||||
|
Loading…
Reference in New Issue
Block a user