go.tools/cmd/cover: s/ParseInt/Atoi/

So people stop asking me to do this.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/12691044
This commit is contained in:
Rob Pike 2013-08-09 13:48:46 +10:00
parent 2449594308
commit 28fe5aa8d3
1 changed files with 2 additions and 6 deletions

View File

@ -91,15 +91,11 @@ func (b blocksByStart) Less(i, j int) bool {
var lineRe = regexp.MustCompile(`^(.+):([0-9]+).([0-9]+),([0-9]+).([0-9]+) ([0-9]+) ([0-9]+)$`)
func toInt(s string) int {
i64, err := strconv.ParseInt(s, 10, 64)
i, err := strconv.Atoi(s)
if err != nil {
panic(err)
}
const maxInt = int64(int(^uint(0) >> 1))
if i64 > maxInt {
i64 = maxInt
}
return int(i64)
return i
}
// Boundary represents the position in a source file of the beginning or end of a