diff options
| author | Rob Pike <r@golang.org> | 2008-08-12 17:07:33 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2008-08-12 17:07:33 -0700 |
| commit | 0f1d439e82eb0c85e397afb22b448ea1ab3d2881 (patch) | |
| tree | ea030cbc0c2f1171ebb860ddb91f8c85d7924cf7 /src/lib/container | |
| parent | ead7a6d47a3cce69a5e102ed21ffb6eedc9ce824 (diff) | |
| download | go-0f1d439e82eb0c85e397afb22b448ea1ab3d2881.tar.xz | |
update bugs
exploit the compiler now supporting i2s and i2i and clean up some code
fix up some panics and prints
R=gri
OCL=14141
CL=14141
Diffstat (limited to 'src/lib/container')
| -rw-r--r-- | src/lib/container/vector.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/container/vector.go b/src/lib/container/vector.go index c3ec0d390f..b4a910a9e2 100644 --- a/src/lib/container/vector.go +++ b/src/lib/container/vector.go @@ -121,6 +121,7 @@ func Test() { v.Insert(0, i1); v.Insert(0, i0); for i := 0; i < v.Len(); i++ { + x := convert(*I, v.At(i)); print(i, " ", v.At(i).(*I).val, "\n"); } } |
