13 Mar
2007
13 Mar
'07
3:21 a.m.
"Gerald Pfeifer" <gerald(a)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. -- Dmitry.