diff options
Diffstat (limited to 'src/pkg/strconv/ftoa_test.go')
-rw-r--r-- | src/pkg/strconv/ftoa_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/strconv/ftoa_test.go b/src/pkg/strconv/ftoa_test.go index 7262b25a6..7475ac6b3 100644 --- a/src/pkg/strconv/ftoa_test.go +++ b/src/pkg/strconv/ftoa_test.go @@ -17,9 +17,7 @@ type ftoaTest struct { s string; } -func fdiv(a, b float64) float64 { - return a/b; -} // keep compiler in the dark +func fdiv(a, b float64) float64 { return a/b } // keep compiler in the dark const ( below1e23 = 99999999999999974834176; |