Skip to content

Commit

Permalink
Fix version limits for min and max behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
dpsanders committed Feb 1, 2017
1 parent 861c100 commit 390c5e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/intervals/arithmetic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ end

//(a::Interval, b::Interval) = a / b # to deal with rationals

if VERSION >= v"0.6.0-dev"
if VERSION >= v"0.6.0-dev.1024"
const filter = Iterators.filter
end

if VERSION < v"0.5"
if VERSION < v"0.5.0-dev+1279"
min(x) = x
max(x) = x
end
Expand Down

0 comments on commit 390c5e4

Please sign in to comment.