common/math: go fmt

This commit is contained in:
Kenji Siu 2016-11-02 22:58:59 +08:00
parent 1b73c79234
commit b522b788b6

View File

@ -7,7 +7,7 @@ import (
)
// wordSize is the size number of bits in a big.Int Word.
const wordSize = 32 << (uint64(^big.Word(0))>>63)
const wordSize = 32 << (uint64(^big.Word(0)) >> 63)
// Exp implement exponentiation by squaring algorithm.
//