Commit 2cb80413 authored by Stefan Behnel's avatar Stefan Behnel

Fix type declaration in parser.

parent 15be0c34
......@@ -2790,10 +2790,10 @@ sign_and_longness_words = cython.declare(frozenset, frozenset((
"short", "long", "signed", "unsigned")))
base_type_start_words = cython.declare(
set,
frozenset,
basic_c_type_names
| sign_and_longness_words
| set(special_basic_c_types))
| frozenset(special_basic_c_types))
struct_enum_union = cython.declare(frozenset, frozenset((
"struct", "union", "enum", "packed")))
......
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