uintptr_t is not defined under MS VC++ 6
Bug #781179 reported by
monday2000
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Cuneiform for Linux |
New
|
Undecided
|
Unassigned |
Bug Description
The uintptr_t type is not defined under MS VC++ 6.
I suggest a patch.
In cuneiform_
#if _MSC_VER <= 1200
typedef unsigned long intptr_t;
typedef unsigned int* uintptr_t; // added by monday2000
#endif
To post a comment you must log in.
>typedef unsigned long intptr_t;
>typedef unsigned int* uintptr_t; // added by monday2000
intptr_t is supposed to be a signed integer type, uintptr_t an unsigned
integer type. So in fact both of these definitions are incorrect.
--
Jakub Wilk