diff --git a/breathe/directives/function.py b/breathe/directives/function.py index b46c54a1..63ac355e 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):