From: Vladimír Vondruš Date: Tue, 14 Aug 2018 19:51:11 +0000 (+0200) Subject: doxygen: don't silently ignore friend declarations. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=092cb611c341c6e3f1076d0a7c6c0df43cf30f89;p=blog.git doxygen: don't silently ignore friend declarations. --- diff --git a/doxygen/dox2html5.py b/doxygen/dox2html5.py index 280c9cc6..1bc8a381 100755 --- a/doxygen/dox2html5.py +++ b/doxygen/dox2html5.py @@ -2482,8 +2482,7 @@ def parse_xml(state: State, xml: str): elif compounddef_child.attrib['kind'] not in ['private-type', 'private-static-func', 'private-static-attrib', - 'private-attrib', - 'friend']: # pragma: no cover + 'private-attrib']: # pragma: no cover logging.warning("{}: unknown kind {}".format(state.current, compounddef_child.attrib['kind'])) elif compounddef_child.tag == 'templateparamlist':