Skip to content

Commit 13f17a0

Browse files
committed
test
1 parent c978896 commit 13f17a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bigint.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,10 @@ func (z *BigInt) innerAsUint64() (val uint64, neg bool, ok bool) {
243243
}
244244

245245
val = uint64(z._inline[0])
246-
if bits.UintSize == 32 {
247-
// From big.low64.
248-
val = uint64(z._inline[1])<<32 | val
249-
}
246+
//if bits.UintSize == 32 {
247+
// // From big.low64.
248+
// val = uint64(z._inline[1])<<32 | val
249+
//}
250250
neg = z._inner == negSentinel
251251
return val, neg, true
252252
}

0 commit comments

Comments
 (0)