Escape parameters named `enum`.
Prefix parameters named `enum` with an underscore like all the other reserved keywords.pull/616/head
parent
466f2cdebf
commit
54c2d23572
|
@ -881,6 +881,7 @@ def is_primitive(name):
|
|||
def escape_cpp(name):
|
||||
escapes = {
|
||||
"class": "_class",
|
||||
"enum": "_enum",
|
||||
"char": "_char",
|
||||
"short": "_short",
|
||||
"bool": "_bool",
|
||||
|
|
Loading…
Reference in New Issue