1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler: prevent vars named 'char' to cause a C error

This commit is contained in:
Delyan Angelov
2020-01-27 21:26:07 +02:00
committed by Alexander Medvednikov
parent c617cf8e05
commit cce0b2425e
2 changed files with 7 additions and 3 deletions

View File

@ -91,6 +91,7 @@ const (
'i64': true,
'i128': true,
'byte': true,
'char': true,
'u16': true,
'u32': true,
'u64': true,