Browse Source

fix: nodeset compiler ignore SymbolicName attribute to disable warning

Stefan Profanter 4 years ago
parent
commit
2d9b25905e
1 changed files with 3 additions and 1 deletions
  1. 3 1
      tools/nodeset_compiler/nodes.py

+ 3 - 1
tools/nodeset_compiler/nodes.py

@@ -546,7 +546,9 @@ class DataTypeNode(Node):
                             fdtype = nodeset.aliases[fdtype]
                     elif at == "Name":
                         fname = str(av)
-                    #elif at == "SymbolicName":
+                    elif at == "SymbolicName":
+                        # ignore
+                        continue
                     #    symbolicName = str(av)
                     elif at == "Value":
                         enumVal = int(av)