Pre-MSVC 2013 did not support PRIu32, add workaround
This commit is contained in:
parent
0df98a53a6
commit
d6c5c7f208
|
@ -159,7 +159,11 @@ typedef struct
|
|||
# ifdef _WIN64
|
||||
# define PRI_SIZET PRIu64
|
||||
# else
|
||||
#if _MSC_VER == 1800
|
||||
# define PRI_SIZET PRIu32
|
||||
#else
|
||||
# define PRI_SIZET "u"
|
||||
#endif
|
||||
# endif
|
||||
#else
|
||||
# define PRI_SIZET "zu"
|
||||
|
|
Loading…
Reference in New Issue