From b28602ab413c84bcffd2b9ee6a02b87ae76a6af4 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Sun, 5 Mar 2017 23:22:46 -0600 Subject: [PATCH] Use CRlibm 0.5 that does not export functions --- src/intervals/rounding.jl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/intervals/rounding.jl b/src/intervals/rounding.jl index de3bcb1..9d5e04c 100644 --- a/src/intervals/rounding.jl +++ b/src/intervals/rounding.jl @@ -72,4 +72,9 @@ for mode in (:Down, :Up) end end + + for f in CRlibm.functions + @eval $f{T<:AbstractFloat}(a::T, $mode1) = CRlibm.$f(a, $mode2) + end + end