Skip to content

Commit

Permalink
Merge pull request #508 from eldadr/master
Browse files Browse the repository at this point in the history
Fixed #507 - enums fully qualified names
  • Loading branch information
vermeeren authored Apr 18, 2020
2 parents b79b67e + 598c85b commit f6733a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion breathe/renderer/sphinxrenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ def get_fully_qualified_name(self):
for node in node_stack:
if node.node_type == 'ref' and len(names) == 0:
return node.valueOf_
if (node.node_type == 'compound' and node.kind not in ['file', 'namespace']) or \
if (node.node_type == 'compound' and
node.kind not in ['file', 'namespace', 'group']) or \
node.node_type == 'memberdef':
# We skip the 'file' entries because the file name doesn't form part of the
# qualified name for the identifier. We skip the 'namespace' entries because if we
Expand Down

0 comments on commit f6733a3

Please sign in to comment.