1
0
mirror of https://github.com/golang/go synced 2024-11-12 01:00:22 -07:00

Change old-style export declaration to new style export of

type definition.

R=r
DELTA=3  (0 added, 2 deleted, 1 changed)
OCL=16537
CL=16545
This commit is contained in:
Ian Lance Taylor 2008-10-06 13:12:03 -07:00
parent 98c208ee1d
commit be0c25ee93

View File

@ -6,12 +6,10 @@
package main
export Vector;
type Element interface {
}
type Vector struct {
export type Vector struct {
}
func (v *Vector) Insert(i int, e Element) {