On Fri, Feb 26, 2010 at 10:44 AM, Lucas De Marchi
<lucas.demar...@profusion.mobi> wrote:
> C++ needs casts in order to assign a void* to another pointer type. As
> typeof operator is a gcc extension, we define EINA_TYPEOF(x) as "typeof"
> on gcc with c++ source and as nothing otherwise.

Lucas, as I told you, I'd rather use the following patch, but it would
not help other C++ compilers, so not a real solution.

I'd say recommendation for c++ (maybe document that in our .h) is:

void *data;
EINA_LIST_FOREACH(list, itr, data) {
      type *d = (type *)data;
      type_do(d);
}

EINA_LIST_FREE(list, data) {
      type *d = (type *)data;
      type_free(d);
}



-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--------------------------------------
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to