diff options
| author | Russ Cox <rsc@golang.org> | 2008-12-01 10:26:23 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2008-12-01 10:26:23 -0800 |
| commit | d154f8a9e2eecff5221bfe02d78ef02a9a0f0e30 (patch) | |
| tree | 1c4c72113cd375104f894fd86732a1c4c0704d63 /src/lib/strconv | |
| parent | d79f687ed8a94dae7d15c4e4622a770eb0373fad (diff) | |
| download | go-d154f8a9e2eecff5221bfe02d78ef02a9a0f0e30.tar.xz | |
add blank line (response to post-submit review of CL 19422)
TBR=r
OCL=20127
CL=20127
Diffstat (limited to 'src/lib/strconv')
| -rw-r--r-- | src/lib/strconv/atof.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/strconv/atof.go b/src/lib/strconv/atof.go index 76b5ebacd4..9345b99396 100644 --- a/src/lib/strconv/atof.go +++ b/src/lib/strconv/atof.go @@ -216,6 +216,7 @@ func DecimalToFloat64Int(neg bool, d *Decimal) float64 { } return f; } + func DecimalToFloat32Int(neg bool, d *Decimal) float32 { f := float32(0); for i := 0; i < d.nd; i++ { |
