Hello,
Once I saw a gcc macro that passes variables arguments to another
variable argument function..example:
function_1 (int z, ...);
function_2 (int z, ...);
{
return function_1 (z, MACRO);
}
Does anyone remember the macro name ?
TIA
_?
>
> Regards,
> Jairo
>
> On Friday 14 October 2005 15:19, Kalaky wrote:
> > Hello,
> >
> > Once I saw a gcc macro that passes variables arguments to another
> > variable argument function..example:
> >
> > function_1 (int z, ...);
&
Hi,
Given that removing/inserting elements from a map/slist/whatever does
not invalidate iterators to list elements, it is safe to use the
element that the iterator "points" to ?
For example:
slist list;
thread A:
lock();
list.insert_after(list.begin(), elem);
unlock();
thread B:
lock();
co