Skip to content

Commit cb1efdd

Browse files
authoredApr 30, 2024··
Revert "Work around inference failure in promotion on nightly (#249)" (#294)
This reverts commit 277a3e4.
1 parent 3a4346c commit cb1efdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/FixedPointNumbers.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -539,8 +539,8 @@ function promote_rule(::Type{X1}, ::Type{X2}) where {T1, f1, X1 <: FixedPoint{T1
539539
m = max(nbitsint(X1), nbitsint(X2))
540540
_widen_rawtype(X{T,f}, m)
541541
end
542-
# TODO: avoid using @pure
543-
@pure function _widen_rawtype(::Type{X}, m) where {T, f, X<:FixedPoint{T,f}}
542+
543+
function _widen_rawtype(::Type{X}, m) where {T, f, X<:FixedPoint{T,f}}
544544
nbitsint(X) >= m && return X
545545
Tw = widen1(T)
546546
T === Tw && return X

0 commit comments

Comments
 (0)
Please sign in to comment.