Skip to content

Commit 0019bb0

Browse files
NHDalyomus
andauthored
Update src/FixedPointDecimals.jl
Co-authored-by: Curtis Vogt <curtis.vogt@gmail.com>
1 parent f2958ba commit 0019bb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FixedPointDecimals.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ _widemul(x::Unsigned,y::Signed) = signed(_widen(x)) * _widen(y)
144144
# FD{Int128} operations should widen to 256 bits internally, rather than to a BigInt.
145145
_widen(::Type{Int128}) = Int256
146146
_widen(::Type{UInt128}) = UInt256
147-
_widen(::Type{Int256}) = BitIntegers.Int512
148-
_widen(::Type{UInt256}) = BitIntegers.UInt512
147+
_widen(::Type{Int256}) = Int512
148+
_widen(::Type{UInt256}) = UInt512
149149
_widen(t::Type) = widen(t)
150150
_widen(x::T) where {T} = (_widen(T))(x)
151151

0 commit comments

Comments
 (0)