Skip to content

Commit

Permalink
Set uptr to be 64bit on 64bit Windows
Browse files Browse the repository at this point in the history
Now I have 10 files not compiling (up from 7)
  • Loading branch information
rgal committed Jan 21, 2021
1 parent 997f17b commit 82da5e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions compiler-rt/lib/scudo/standalone/internal_defs.h
Expand Up @@ -50,7 +50,11 @@

namespace scudo {

#ifdef _WIN64
typedef unsigned long long uptr;
#else
typedef unsigned long uptr;
#endif
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
Expand Down

0 comments on commit 82da5e9

Please sign in to comment.