Browse Source

Escape parameters named `enum`.

Prefix parameters named `enum` with an underscore like all the other
reserved keywords.
Raul Santos 4 năm trước cách đây
mục cha
commit
54c2d23572
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      binding_generator.py

+ 1 - 0
binding_generator.py

@@ -881,6 +881,7 @@ def is_primitive(name):
 def escape_cpp(name):
     escapes = {
         "class":    "_class",
+        "enum":     "_enum",
         "char":     "_char",
         "short":    "_short",
         "bool":     "_bool",