[top-level] C++-friendly allocators for libiberty

Zack Weinberg zack@codesourcery.com
Sat Jun 26 11:46:00 GMT 2004


Alexandre Oliva <aoliva@redhat.com> writes:

>> +#define xcnewvec(T, N)		(T *) xcalloc (N, sizeof (T))
>> +#define xresize(T, P, S)	(T *) xrealloc (P, S)
>> +#define xresizevec(T, P, N)	(T *) xrealloc (P, sizeof (T) * (N))
>> +#define xobnew(O, T)		(T *) obstack_alloc (O, sizeof (T))
>
> You're missing parentheses around N, P (twice), S and O.

They're not actually necessary in this context.

zw



More information about the Gcc-patches mailing list