You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which compiler are you using (5g, 6g, 8g, gccgo)?
6g
Which operating system are you using?
Linux Mint 14 Nadia
Which version are you using? (run 'go version')
go version go1.1 linux/amd64
Please provide any additional information below.
The fix given in issue #3741 created a new data structure for GoSlice, but the naming conventions used for that is different than what is used for GoString and GoInterface.
I would be cleaner and more predictable if the member names were consistent across the
three defined data structures:
typedef struct { char *data; int len; } GoString;
typedef struct { void *type; void *value; } GoInterface;
typedef struct { void *data; int len; int cap; } GoSlice;
The text was updated successfully, but these errors were encountered:
by TheBrokenToaster:
The text was updated successfully, but these errors were encountered: