Skip to content

Commit

Permalink
Fixes #292
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Jan 2, 2017
1 parent e9b487a commit 601b2ee
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions breathe/renderer/sphinxrenderer.py
Expand Up @@ -71,6 +71,11 @@ def visit_desc_signature(self, node):
# https://github.com/michaeljones/breathe/issues/242
self.declarator = node

def visit_desc_signature_line(self, node):
# In sphinx 1.5, there is now a desc_signature_line node within the desc_signature
# This should be used instead
self.declarator = node

def visit_desc_content(self, node):
self.content = node

Expand Down

0 comments on commit 601b2ee

Please sign in to comment.