Skip to content

Commit

Permalink
Fix test failure with latest Sphinx master (#1010)
Browse files Browse the repository at this point in the history
This parameter name has been changed from camelCase to snake_case.
  • Loading branch information
yut23 authored Jan 16, 2025
1 parent f675265 commit bff6839
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 bff6839

Please sign in to comment.