Skip to content

Commit 74e2ca4

Browse files
committed
Fix test failure with latest Sphinx master
This parameter name was changed from camelCase to snake_case in sphinx-doc/sphinx@a48e1e2.
1 parent 685b3bc commit 74e2ca4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

breathe/directives/function.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def _parse_args(self, function_description: str) -> Optional[cpp.ASTParametersQu
166166
parser = cpp.DefinitionParser(
167167
function_description, location=self.get_source_info(), config=self.config
168168
)
169-
paramQual = parser._parse_parameters_and_qualifiers(paramMode="function")
169+
paramQual = parser._parse_parameters_and_qualifiers("function")
170170
# strip everything that doesn't contribute to overloading
171171

172172
def stripParamQual(paramQual):

0 commit comments

Comments
 (0)