From: Vladimír Vondruš Date: Mon, 29 Jan 2018 20:15:27 +0000 (+0100) Subject: doxygen: groups can have inner classes, too. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=5f41d47daa8422d0868ae6665bece01e64b30f9f;p=blog.git doxygen: groups can have inner classes, too. --- diff --git a/doxygen/dox2html5.py b/doxygen/dox2html5.py index 91c17db4..86479cbf 100755 --- a/doxygen/dox2html5.py +++ b/doxygen/dox2html5.py @@ -1465,7 +1465,7 @@ def parse_xml(state: State, xml: str): assert compounddef_child.attrib['prot'] == 'protected' compound.protected_types += [('class', class_)] else: - assert compound.kind in ['namespace', 'file'] + assert compound.kind in ['namespace', 'group', 'file'] compound.classes += [class_] # Base class (if it links to anywhere)