Fix what I assume was a typo in scripts/StepImporter/CppGenerator.py - get_hierarchy is not used internally, so it did not cause runtime errors in the tests. Tests should perhaps be revised to reflect this.

pull/2392/head
Charlie Gettys 2019-03-27 12:28:50 -04:00
parent eb81619e56
commit ae6c1e5ad8
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ def get_derived(e,schema):
return res
def get_hierarchy(e,schema):
return get_derived(e.schema)+[e.name]+get_base_classes(e,schema)
return get_derived(e, schema)+[e.name]+get_base_classes(e,schema)
def sort_entity_list(schema):
deps = []