From e29f93e8a85266e688bf6c6350df1ec8fba842b4 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 8 Nov 2020 06:33:42 -0800 Subject: [PATCH] Suppress more bogus warnings --- doc/build.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/build.py b/doc/build.py index 7f5720b6..dadeb80a 100755 --- a/doc/build.py +++ b/doc/build.py @@ -89,7 +89,9 @@ def build_docs(version='dev', **kwargs): fmt::basic_format_arg::handle '''.format(include_dir, doxyxml_dir).encode('UTF-8')) noisy_warnings = [ - 'warning: .* fmt::detail::.* is not documented.' + 'warning: .* fmt::detail::.* is not documented.', + 'warning: Internal inconsistency: member .* does not belong to any ' + + 'container!' ] for w in noisy_warnings: out = re.sub('.*' + w + '\n', '', out)