Skip to content

Commit

Permalink
- Added extra parenthesis for truth comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-zhuk committed Jun 4, 2011
1 parent aa6cab5 commit 328a8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MiscMergeExpression.m
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ - (NSArray *)evaluateAsListWithEngine:(MiscMergeEngine *)anEngine
NSEnumerator *enumerator = [expressions objectEnumerator];
MiscMergeExpression *expression;

while ( expression = (MiscMergeExpression *)[enumerator nextObject] ) {
while (( expression = (MiscMergeExpression *)[enumerator nextObject] )) {
[array addObject:[expression evaluateWithEngine:anEngine]];
}

Expand Down

0 comments on commit 328a8ba

Please sign in to comment.