Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JuliaLang/julia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 43d2bdf891f4aeeaef696a87696e121bc7df91fe
Choose a base ref
..
head repository: JuliaLang/julia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 597740c9be56f3b8575771de86457eddf0e25932
Choose a head ref
Showing with 1 addition and 3 deletions.
  1. +1 −3 base/deprecated.jl
4 changes: 1 addition & 3 deletions base/deprecated.jl
Original file line number Diff line number Diff line change
@@ -531,12 +531,10 @@ e_depwarn() = depwarn("e mathematical constant is deprecated, use ℯ (\\u212F)

<(::MathConst{:e}, y::Rational{BigInt}) = (e_depwarn(); <(ℯ, y))
<(x::Rational{BigInt}, ::MathConst{:e}) = (e_depwarn(); <(x, ℯ))

<(::MathConst{:e}, y::Rational) = (e_depwarn(); <(ℯ, y))
<(x::Rational, ::MathConst{:e}) =(e_depwarn(); <(x, ℯ))

<(x::MathConst{:e}, y::Rational{BigInt}) = (e_depwarn(); <(ℯ, y))
<(x::Rational{BigInt}, y::MathConst{:e}) = (e_depwarn(); <(x, ℯ))

<=(x::MathConst{:e}, y::Rational) = (e_depwarn(); <=(ℯ, y))
<=(x::Rational, y::MathConst{:e}) = (e_depwarn(); <=(x, ℯ))