Commit 3b7f49fb authored by Robert Bradshaw's avatar Robert Bradshaw

cleanup

parent 960096eb
......@@ -794,13 +794,13 @@ class CStructOrUnionDefNode(StatNode):
self.entry = env.declare_struct_or_union(
self.name, self.kind, scope, self.typedef_flag, self.pos,
self.cname, visibility = self.visibility)
need_typedef_indirection = False
if self.attributes is not None:
if self.in_pxd and not env.in_cinclude:
self.entry.defined_in_pxd = 1
for attr in self.attributes:
attr.analyse_declarations(env, scope)
if self.visibility != 'extern':
needs_typedef_indirection = False
for attr in scope.var_entries:
type = attr.type
while type.is_array:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment