diff options
| author | Russ Cox <rsc@golang.org> | 2011-01-19 23:09:00 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2011-01-19 23:09:00 -0500 |
| commit | f2b5a07453277de6bc500dc283799441cc375239 (patch) | |
| tree | 2c5fdc55fd72274b49b5eff68736ff3075389b3d /src/pkg/encoding/binary/binary_test.go | |
| parent | 0849944694543a3446da4b1fa0c3d314781ced14 (diff) | |
| download | go-f2b5a07453277de6bc500dc283799441cc375239.tar.xz | |
delete float, complex - code changes
also:
cmplx -> complex
float64(1.0) -> 1.0
float64(1) -> 1.0
R=gri, r, gri1, r2
CC=golang-dev
https://golang.org/cl/3991043
Diffstat (limited to 'src/pkg/encoding/binary/binary_test.go')
| -rw-r--r-- | src/pkg/encoding/binary/binary_test.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/pkg/encoding/binary/binary_test.go b/src/pkg/encoding/binary/binary_test.go index c378413f10..e09ec489fd 100644 --- a/src/pkg/encoding/binary/binary_test.go +++ b/src/pkg/encoding/binary/binary_test.go @@ -31,8 +31,6 @@ type Struct struct { type T struct { Int int Uint uint - Float float - Complex complex Uintptr uintptr Array [4]int } @@ -49,11 +47,11 @@ var s = Struct{ math.Float32frombits(0x1f202122), math.Float64frombits(0x232425262728292a), - cmplx( + complex( math.Float32frombits(0x2b2c2d2e), math.Float32frombits(0x2f303132), ), - cmplx( + complex( math.Float64frombits(0x333435363738393a), math.Float64frombits(0x3b3c3d3e3f404142), ), |
