"Gerald Pfeifer" gerald@pfeifer.com wrote:
I accidently ended up building Wine using a C++ compiler the other day, and came across the following.
char *p = xmalloc (size);
char *p = (char*) xmalloc (size);
That's a problem of C++ not Wine if it can't cope with casting void * to another pointer type. Polluting the whole source with useless casts buys us nothing.