cgen: handle variables called "array"

pull/6300/head
Alexander Medvednikov 2020-09-03 02:01:21 +02:00
parent a3ee217537
commit cc714ca5cc
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import v.depgraph
// NB: keywords after 'new' are reserved in C++
const (
c_reserved = ['delete', 'exit', 'link', 'unix', 'error', 'calloc', 'malloc', 'free', 'panic',
c_reserved = ['array', 'delete', 'exit', 'link', 'unix', 'error', 'calloc', 'malloc', 'free', 'panic',
'auto', 'char', 'default', 'do', 'double', 'extern', 'float', 'inline', 'int', 'long', 'register',
'restrict', 'short', 'signed', 'sizeof', 'static', 'switch', 'typedef', 'union', 'unsigned', 'void',
'volatile', 'while', 'new', 'namespace', 'class', 'typename', 'export']