mirror of
https://github.com/golang/go
synced 2024-11-18 16:24:42 -07:00
fmt: dead code and data
R=r DELTA=10 (0 added, 10 deleted, 0 changed) OCL=28258 CL=28287
This commit is contained in:
parent
21c9f82f40
commit
747e26166a
@ -14,16 +14,6 @@ const nPows10 = 160;
|
|||||||
|
|
||||||
var ldigits string = "0123456789abcdef" // var not const because we take its address
|
var ldigits string = "0123456789abcdef" // var not const because we take its address
|
||||||
var udigits string = "0123456789ABCDEF"
|
var udigits string = "0123456789ABCDEF"
|
||||||
var pows10 [nPows10] float64;
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
pows10[0] = 1.0e0;
|
|
||||||
pows10[1] = 1.0e1;
|
|
||||||
for i:=2; i<nPows10; i++ {
|
|
||||||
m := i/2;
|
|
||||||
pows10[i] = pows10[m] * pows10[i-m];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Fmt is the raw formatter used by Printf etc. Not meant for normal use.
|
Fmt is the raw formatter used by Printf etc. Not meant for normal use.
|
||||||
|
Loading…
Reference in New Issue
Block a user