fisicalab-discuss
[Top][All Lists]
Advanced

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

[Fisicalab-discuss] bug in fisicalab 3.5


From: carl hansen
Subject: [Fisicalab-discuss] bug in fisicalab 3.5
Date: Mon, 12 Oct 2015 17:38:58 -0700

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]