Skip to content

Commit 74ead78

Browse files
committed
suppress static analyser warning, we already have a FIXME comment
1 parent 6f9cef8 commit 74ead78

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Source/NSPredicate.m

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3121,12 +3121,10 @@ - (NSExpression *) parseBinaryExpression
31213121

31223122
while (YES)
31233123
{
3124-
NSExpression *right;
3125-
31263124
if ([self scanString: @":=" intoString: NULL]) // assignment
31273125
{
31283126
// check left to be a variable?
3129-
right = [self parseAdditionExpression];
3127+
[self parseAdditionExpression];
31303128
// FIXME
31313129
}
31323130
else

0 commit comments

Comments
 (0)