Suppress more bogus warnings

This commit is contained in:
Victor Zverovich 2020-11-08 06:33:42 -08:00
parent 4e8d000f76
commit e29f93e8a8

View File

@ -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)