diff options
| author | Russ Cox <rsc@golang.org> | 2009-01-09 00:17:46 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-01-09 00:17:46 -0800 |
| commit | 484ba939d2b6848531ee64eae428721b9ae8fac0 (patch) | |
| tree | 8294974762ab403e555ab47cfa23caed71af1549 /src/runtime/runtime.h | |
| parent | 51c3ac7e3fabaaeb551bb1d287c840d5208e5be4 (diff) | |
| download | go-484ba939d2b6848531ee64eae428721b9ae8fac0.tar.xz | |
update sys.reflect and sys.unreflect to accomodate
the possibility of large objects in interface values.
R=r
DELTA=171 (97 added, 22 deleted, 52 changed)
OCL=22382
CL=22382
Diffstat (limited to 'src/runtime/runtime.h')
| -rw-r--r-- | src/runtime/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h index 687e4e0ee0..ba210aee7c 100644 --- a/src/runtime/runtime.h +++ b/src/runtime/runtime.h @@ -110,7 +110,7 @@ struct String struct Iface { Itype *type; - void *data[1]; // could make bigger later, but must be in sync with compilers + void *data; }; struct Array |
