aboutsummaryrefslogtreecommitdiff
path: root/doc/doxygen/warningfilter.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/doxygen/warningfilter.py')
-rwxr-xr-xdoc/doxygen/warningfilter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/doxygen/warningfilter.py b/doc/doxygen/warningfilter.py
index ab25bb893..6a4651024 100755
--- a/doc/doxygen/warningfilter.py
+++ b/doc/doxygen/warningfilter.py
@@ -22,7 +22,7 @@ command_re = "(?:</[^>]+>|\\\w+)"
22macro_params = rf"\({sep_re(simple_name, ', ')}(?:,\.\.\.)?\)" 22macro_params = rf"\({sep_re(simple_name, ', ')}(?:,\.\.\.)?\)"
23 23
24matches = { 24matches = {
25 "not an input @file": re.compile(rf"{main_match} the name '{filepath}' supplied as the argument in the \\file statement is not an input file"), 25 "not an input @file": re.compile(rf"{main_match} the name '(?P<name>{filepath}|{simple_name})' supplied as the argument in the \\file statement is not an input file"),
26 "multiple @param docs": re.compile(rf"{main_match} argument '\w+' from the argument list of \w+ has multiple @param documentation sections"), 26 "multiple @param docs": re.compile(rf"{main_match} argument '\w+' from the argument list of \w+ has multiple @param documentation sections"),
27 "undocumented param (message)": re.compile(rf"{main_match} The following parameters? of {func_name}(?:{func_params}|{macro_params}) (?:is|are) not documented:"), 27 "undocumented param (message)": re.compile(rf"{main_match} The following parameters? of {func_name}(?:{func_params}|{macro_params}) (?:is|are) not documented:"),
28 "undocumented param (name)": re.compile(r" parameter '[\w.]+'"), 28 "undocumented param (name)": re.compile(r" parameter '[\w.]+'"),