From a38d710823f099d67890e87b9b23300cab385476 Mon Sep 17 00:00:00 2001 From: miguelraz Date: Wed, 19 Sep 2018 14:11:22 -0500 Subject: [PATCH] Hotfix for ==(DecoratedInterval,Interval) --- src/decorations/functions.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/decorations/functions.jl b/src/decorations/functions.jl index b33b5fc03..e88aed564 100644 --- a/src/decorations/functions.jl +++ b/src/decorations/functions.jl @@ -33,8 +33,8 @@ end in(x::T, a::DecoratedInterval) where T<:Real = in(x, interval_part(a)) -@inline Base.:(==)(xx::DecoratedInterval, yy::Interval) = false -@inline Base.:(==)(y::Interval, xx::DecoratedInterval) = false +==(xx::DecoratedInterval, yy::Interval) = false +==(y::Interval, xx::DecoratedInterval) = false ## scalar functions: mig, mag and friends