aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/type.h')
-rw-r--r--src/pkg/runtime/type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/type.h b/src/pkg/runtime/type.h
index 10d0068eac..86e31ba2ae 100644
--- a/src/pkg/runtime/type.h
+++ b/src/pkg/runtime/type.h
@@ -39,7 +39,7 @@ struct UncommonType
{
String *name;
String *pkgPath;
- Array mhdr;
+ Slice mhdr;
Method m[];
};
@@ -62,7 +62,7 @@ struct IMethod
struct InterfaceType
{
Type;
- Array mhdr;
+ Slice mhdr;
IMethod m[];
};