applied parentheses to quiet some -w warnings.

This commit is contained in:
blackhedd 2007-05-18 21:50:22 +00:00
parent 64a8240ae0
commit 3f7a4a254d

View file

@ -319,9 +319,9 @@ class Filter
when :le
yield :lessOrEqual, @left, @right
when :or, :and
yield @op, (@left.execute &block), (@right.execute &block)
yield @op, (@left.execute(&block)), (@right.execute(&block))
when :not
yield @op, (@left.execute &block)
yield @op, (@left.execute(&block))
end || []
end