On Sun, 15 Nov 2009, Christopher Michael wrote:

> I don't see how it is any different than Declaring variables inline - doing 
> something like this:
>
> if (x)
> {
>  int d;
>
>  d = 1;
> }

what they won't like is:

int i1;
i1 = 4;
int i2;

that is, not having all the variable declaration at the beginning of the 
block

Vincent

>
> dh
>
> Vincent Torri wrote:
>> 
>> On Sat, 14 Nov 2009, Enlightenment SVN wrote:
>> 
>>> static void _elm_win_obj_callback_del(void *data, Evas *e, Evas_Object 
>>> *obj, void *event_info);
>>> @@ -39,8 +37,8 @@
>>> _elm_win_resize(Ecore_Evas *ee)
>>> {
>>>    Evas_Object *obj = ecore_evas_object_associate_get(ee);
>>> +   if (strcmp(elm_widget_type_get(obj), "win")) return;
>>>    Elm_Win *win;
>>> -   if (strcmp(elm_widget_type_get(obj), "win")) return;
>> 
>> some compilers won't like that at all
>> 
>> Vincent
>> 
>
>

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to