mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
gofmt: more consistent formatting of const/var decls
- gofmt -w src misc - only manually modified file: src/pkg/go/printer/nodes.go R=rsc CC=golang-dev, r https://golang.org/cl/606041
This commit is contained in:
parent
74fac99d05
commit
53f3d0733c
16 changed files with 138 additions and 88 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