fisicalab-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Fisicalab-discuss] bug in fisicalab 3.5


From: Germán Arias
Subject: Re: [Fisicalab-discuss] bug in fisicalab 3.5
Date: Tue, 13 Oct 2015 01:18:08 -0600

Thanks Carl, the changes has been applied at revision 704.

Regards
Germán

El lun, 12-10-2015 a las 17:38 -0700, carl hansen escribió:
> FLDynamics.m: In function '-[FLDynamics makeEquationsForData:]':
> FLDynamics.m:4497:46: warning: logical not is only applied to the left
> hand side of comparison [-Wlogical-not-parentheses]
>       if (![[values objectAtIndex: 0] length] > 0 ||
>                                               ^
> 
> 
> should be 
> 
> if (  !  (  [[values objectAtIndex: 0] length] > 0 )  ||
> 
> 
> FLDynamics.m:4499:39: warning: logical not is only applied to the left
> hand side of comparison [-Wlogical-not-parentheses]
>    ![[values objectAtIndex: 1] length] > 0 ||
>                                        ^
> 
> 
> 
> should be
> 
> 
>   !  (  [[values objectAtIndex: 1] length] > 0 )   ||
> 
> 
> 
> 
> 
> 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]