Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mcabbott authored Feb 21, 2024
1 parent a747556 commit 5b62b05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ changes in `julia`.

* `allequal(f, itr)` and `allunique(f, itr)` methods. ([#47679]) (since Compat 4.13.0)

* `logrange(lo, hi; length)` is like `range` but for `*` not `+`. ([#39071]) (since Compat 4.13.0)
* `logrange(lo, hi; length)` is like `range` but for `*` not `+`. ([#39071]) (since Compat 4.14.0)

* `Iterators.cycle(itr, n)` is the lazy version of `repeat(vector, n)`. ([#47354]) (since Compat 4.13.0)

Expand Down
2 changes: 1 addition & 1 deletion src/Compat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ if !isdefined(Base, :logrange) # VERSION < v"1.12.0-DEV.2" or appropriate 1.11.

_exp_allowing_twice64(x::Number) = exp(x)

if isdefined(Base.Math, :_log_ext) # allows this high-precision path:
if VERSION >= v"1.9" # allows this high-precision path:

_exp_allowing_twice64(x::Base.TwicePrecision{Float64}) = Base.Math.exp_impl(x.hi, x.lo, Val(:ℯ))

Expand Down

0 comments on commit 5b62b05

Please sign in to comment.