From bff6839efadbc26c9c7082b36780961187090b21 Mon Sep 17 00:00:00 2001 From: "Eric T. Johnson" Date: Thu, 16 Jan 2025 13:18:57 -0500 Subject: [PATCH] Fix test failure with latest Sphinx master (#1010) This parameter name has been changed from camelCase to snake_case. --- breathe/directives/function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/breathe/directives/function.py b/breathe/directives/function.py index b46c54a11..63ac355e1 100644 --- a/breathe/directives/function.py +++ b/breathe/directives/function.py @@ -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):