Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
3b7f49fb
Commit
3b7f49fb
authored
Nov 25, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
960096eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+8
-8
No files found.
Cython/Compiler/Nodes.py
View file @
3b7f49fb
...
...
@@ -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
:
...
...
@@ -812,13 +812,13 @@ class CStructOrUnionDefNode(StatNode):
type
=
type
.
base_type
if
type
==
self
.
entry
.
type
:
need_typedef_indirection
=
True
if
need_typedef_indirection
:
# C can't handle typedef structs that refer to themselves.
struct_entry
=
self
.
entry
cname
=
env
.
new_const_cname
()
self
.
entry
=
env
.
declare_typedef
(
self
.
name
,
struct_entry
.
type
,
self
.
pos
,
cname
=
self
.
cname
,
visibility
=
'ignore'
)
struct_entry
.
type
.
typedef_flag
=
False
struct_entry
.
cname
=
struct_entry
.
type
.
cname
=
env
.
new_const_cname
()
if
need_typedef_indirection
:
# C can't handle typedef structs that refer to themselves.
struct_entry
=
self
.
entry
cname
=
env
.
new_const_cname
()
self
.
entry
=
env
.
declare_typedef
(
self
.
name
,
struct_entry
.
type
,
self
.
pos
,
cname
=
self
.
cname
,
visibility
=
'ignore'
)
struct_entry
.
type
.
typedef_flag
=
False
struct_entry
.
cname
=
struct_entry
.
type
.
cname
=
env
.
new_const_cname
()
def
analyse_expressions
(
self
,
env
):
pass
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment