diff options
| author | Austin Clements <austin@google.com> | 2017-06-13 10:33:24 -0400 |
|---|---|---|
| committer | Austin Clements <austin@google.com> | 2017-06-13 18:57:48 +0000 |
| commit | 200d0cc1929daa6331b552989b43d186d410d983 (patch) | |
| tree | 97087538c2c610acbd1fdfd80300a628ddc068d4 /src/database/sql | |
| parent | b488073d514d06269eab561104c0dc5ff606c4ba (diff) | |
| download | go-200d0cc1929daa6331b552989b43d186d410d983.tar.xz | |
runtime: clean up some silly allp loops
Back in the day, allp was just a pointer to an array. As a result, the
runtime has a few loops of the form:
for i := 0; ; i++ {
p := allp[i]
if p == nil {
break
}
...
}
This is silly now because it requires that allp be one longer than the
maximum possible number of Ps, but now that allp is in Go it has a
length.
Replace these with range loops.
Change-Id: I91ef4bc7bd3c9d4fda2264f4aa1b1d0271d7f578
Reviewed-on: https://go-review.googlesource.com/45571
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/database/sql')
0 files changed, 0 insertions, 0 deletions
