Commit 5a9c0be1 authored by Stefan Behnel's avatar Stefan Behnel

commented out buffer support in parser to fix C array types

parent c3b8f90c
......@@ -1613,7 +1613,7 @@ def p_c_simple_base_type(s, self_flag, nonempty):
# Treat trailing [] on type as buffer access
if s.sy == '[':
if 0: # s.sy == '[':
if is_basic:
s.error("Basic C types do not support buffer access")
return p_buffer_access(s, type_node)
......
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