From 484ba939d2b6848531ee64eae428721b9ae8fac0 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 9 Jan 2009 00:17:46 -0800 Subject: 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 --- src/runtime/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runtime/runtime.h') 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 -- cgit v1.3-5-g9baa