Skip to content

Commit

Permalink
Fix test failure with latest Sphinx master
Browse files Browse the repository at this point in the history
This parameter name was changed from camelCase to snake_case in
sphinx-doc/sphinx@a48e1e2.
  • Loading branch information
yut23 committed Jan 16, 2025
1 parent 685b3bc commit 74e2ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion breathe/directives/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def _parse_args(self, function_description: str) -> Optional[cpp.ASTParametersQu
parser = cpp.DefinitionParser(
function_description, location=self.get_source_info(), config=self.config
)
paramQual = parser._parse_parameters_and_qualifiers(paramMode="function")
paramQual = parser._parse_parameters_and_qualifiers("function")
# strip everything that doesn't contribute to overloading

def stripParamQual(paramQual):
Expand Down

0 comments on commit 74e2ca4

Please sign in to comment.