Fix regression due to when bool restriction 361a2d830a and https://github.com/nim-lang/Nim/issues/7375

This commit is contained in:
mratsim 2018-08-24 13:34:29 +02:00
parent bd734b6845
commit 7e0289fbdf
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ func extPrecAddMul(result: var UintImpl[uint64], u, v: uint64) =
macro eqSym(x, y: untyped): untyped =
let eq = $x == $y # Unfortunately eqIdent compares to string.
result = quote do: `eq`
result = newLit eq
func extPrecAddMul[T](result: var UintImpl[UintImpl[T]], u, v: UintImpl[T])
func extPrecMul*[T](result: var UintImpl[UintImpl[T]], u, v: UintImpl[T])