Merge pull request #526 from asuessenbach/check

Correct filtering of struct elements.
This commit is contained in:
Andreas Süßenbach
2020-02-27 10:02:09 +01:00
committed by GitHub

View File

@@ -4943,9 +4943,8 @@ void VulkanHppGenerator::readStruct(tinyxml2::XMLElement const* element, bool is
{ {
readComment(child); readComment(child);
} }
else else if (value == "member")
{ {
assert(value == "member");
readStructMember(child, it->second.members); readStructMember(child, it->second.members);
} }
} }