summaryrefslogtreecommitdiff
path: root/Include/symtable.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-08-17 01:27:30 +0000
committerBenjamin Peterson <benjamin@python.org>2008-08-17 01:27:30 +0000
commit80e8c12a314e9def2b8b817f294f8965acebd8cc (patch)
tree6cc7d9e58360836ad97e8eeed1b6155065523dfb /Include/symtable.h
parent099fe5f7dbd6be6b78425edec254f54103fee271 (diff)
downloadcpython-80e8c12a314e9def2b8b817f294f8965acebd8cc.tar.gz
fix compile errors
Diffstat (limited to 'Include/symtable.h')
-rw-r--r--Include/symtable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/symtable.h b/Include/symtable.h
index 02cffb9f50..32b4ebff33 100644
--- a/Include/symtable.h
+++ b/Include/symtable.h
@@ -32,7 +32,7 @@ typedef struct _symtable_entry {
PyObject *ste_children; /* list of child ids */
_Py_block_ty ste_type; /* module, class, or function */
int ste_unoptimized; /* false if namespace is optimized */
- int ste_nested : ; /* true if block is nested */
+ int ste_nested; /* true if block is nested */
unsigned ste_free : 1; /* true if block has free variables */
unsigned ste_child_free : 1; /* true if a child block has free vars,
including free refs to globals */