summaryrefslogtreecommitdiffstats
path: root/gi/pygi-struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'gi/pygi-struct.c')
-rw-r--r--gi/pygi-struct.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gi/pygi-struct.c b/gi/pygi-struct.c
index b1e81bf..f15a6cd 100644
--- a/gi/pygi-struct.c
+++ b/gi/pygi-struct.c
@@ -65,12 +65,6 @@ _struct_new (PyTypeObject *type,
return NULL;
}
- is_simple = pygi_g_struct_info_is_simple((GIStructInfo *)info);
- if (!is_simple) {
- PyErr_Format(PyExc_TypeError, "cannot create '%s' instances", type->tp_name);
- goto out;
- }
-
size = g_struct_info_get_size((GIStructInfo *)info);
pointer = g_try_malloc0(size);
if (pointer == NULL) {