Skip to content

Commit

Permalink
Don't reverse names in get_qualification
Browse files Browse the repository at this point in the history
E.g. a function a::b::c::foo() is otherwise incorrectly displayed at c::b::a::foo()
  • Loading branch information
martinus committed Jun 6, 2020
1 parent 330a73a commit 898b405
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions breathe/renderer/sphinxrenderer.py
Expand Up @@ -523,8 +523,6 @@ def debug_print_node(n):
names.extend(node.compoundname.split('::'))
break

names.reverse()

if config.breathe_debug_trace_qualification:
print("{}res={}".format(_debug_indent * ' ', names))
_debug_indent -= 1
Expand Down

0 comments on commit 898b405

Please sign in to comment.