Skip to content

Commit

Permalink
Fix handling of feature tags in vk.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Sep 2, 2024
1 parent 386569f commit 2cf7ebe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fun extractEntities(e: Element): Registry {
handles = e.queryEntities("types/type[@category='handle' and not(@alias)]", ::extractHandle),
structs = e.queryEntities("types/type[@category='struct' and not(@alias)]", ::extractStructure),
unions = e.queryEntities("types/type[@category='union' and not(@alias)]", ::extractStructure),
versions = e.getEntities("feature", ::extractVersion),
versions = e.queryEntities("feature[@api]", ::extractVersion),
)
}

Expand Down

0 comments on commit 2cf7ebe

Please sign in to comment.