2008-12-22 Jürg Billeter <j@bitron.ch>
* vala/valastruct.vala:
Use BOXED as marshaller name for structs with type id
svn path=/trunk/; revision=2236
+2008-12-22 Jürg Billeter <j@bitron.ch>
+
+ * vala/valastruct.vala:
+
+ Use BOXED as marshaller name for structs with type id
+
2008-12-21 Jürg Billeter <j@bitron.ch>
* vala/valastruct.vala:
}
if (is_simple_type ()) {
Report.error (source_reference, "The type `%s` doesn't declare a marshaller type name".printf (get_full_name ()));
+ } else if (has_type_id) {
+ return "BOXED";
} else {
return "POINTER";
}