diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-17 01:27:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-17 01:27:30 (GMT) |
commit | 025d9392a6929d15ee542aeeaa4a7710745d6afe (patch) | |
tree | bb85f1a51a3451aefd5a5dac113286d3c153b546 /Include | |
parent | e3444c8b598f37bc58bc192c6cead0d19602c2c1 (diff) | |
download | cpython-025d9392a6929d15ee542aeeaa4a7710745d6afe.zip cpython-025d9392a6929d15ee542aeeaa4a7710745d6afe.tar.gz cpython-025d9392a6929d15ee542aeeaa4a7710745d6afe.tar.bz2 |
fix compile errors
Diffstat (limited to 'Include')
-rw-r--r-- | Include/symtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/symtable.h b/Include/symtable.h index 02cffb9..32b4ebf 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 */ |