Vincent Torri wrote:
>
> On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote:
>
>> it's portable but often buggy. If compile does not work with c99, then
>> it's a huge problem...
>
> vc++ is not C99 compliant but it supports some of its features. Not all.
>
> So do I use alloca or not instead o
On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote:
> it's portable but often buggy. If compile does not work with c99, then
> it's a huge problem...
vc++ is not C99 compliant but it supports some of its features. Not all.
So do I use alloca or not instead of variable-size arrays ?
Vincent
-
On Wed, Dec 3, 2008 at 6:45 PM, Vincent Torri <[EMAIL PROTECTED]> wrote:
>
>
> On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote:
>
>>> - priv = calloc(1, sizeof(*priv));
>>> + priv = (Evas_Object_Box_Data *)calloc(1, sizeof(*priv));
>>
>> This is C and not C++, this is not required. P
On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote:
>> - priv = calloc(1, sizeof(*priv));
>> + priv = (Evas_Object_Box_Data *)calloc(1, sizeof(*priv));
>
> This is C and not C++, this is not required. Please do not add these.
Sorry, I keep them. You never compiled code with vc++...
On Wed, Dec 3, 2008 at 3:59 PM, Enlightenment SVN
<[EMAIL PROTECTED]> wrote:
> Log:
> add cast
>
> Author: caro
> Date: 2008-12-03 09:59:39 -0800 (Wed, 03 Dec 2008)
> New Revision: 37915
>
> Modified:
> trunk/evas/src/lib/canvas/evas_object_box.c
>
> Modified: trunk/evas/src/lib/can