mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
go/printer, gofmt: fix alignment of "=" in const/var declarations
gofmt -w src misc Fixes #1414. R=rsc, r CC=golang-dev https://golang.org/cl/4456054
This commit is contained in:
parent
447db23c4a
commit
499ad9448b
10 changed files with 216 additions and 81 deletions
|
|
@ -197,7 +197,7 @@ func initNorm() (testKn []uint32, testWn, testFn []float32) {
|
|||
const m1 = 1 << 31
|
||||
var (
|
||||
dn float64 = rn
|
||||
tn = dn
|
||||
tn = dn
|
||||
vn float64 = 9.91256303526217e-3
|
||||
)
|
||||
|
||||
|
|
@ -226,7 +226,7 @@ func initExp() (testKe []uint32, testWe, testFe []float32) {
|
|||
const m2 = 1 << 32
|
||||
var (
|
||||
de float64 = re
|
||||
te = de
|
||||
te = de
|
||||
ve float64 = 3.9496598225815571993e-3
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue