From 7c073da2c1c26cfaa36f32f34b0972e146314128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20S=C3=BC=C3=9Fenbach?= Date: Thu, 16 Feb 2023 16:07:33 +0100 Subject: [PATCH] Adjust handling of attribute "depends" in (#1508) --- VulkanHppGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VulkanHppGenerator.cpp b/VulkanHppGenerator.cpp index db775b0..cfa6c71 100644 --- a/VulkanHppGenerator.cpp +++ b/VulkanHppGenerator.cpp @@ -10788,7 +10788,7 @@ void VulkanHppGenerator::readExtensionsExtension( tinyxml2::XMLElement const * e else if ( ( attribute.first == "depends" ) || ( attribute.first == "requires" ) ) { // we don't care about the logical implications of ',' and '+' here, we're just interested to get the depends strings - depends = tokenizeAny( attribute.second, ",+" ); + depends = tokenize( attribute.second, "," ); } else if ( attribute.first == "requiresCore" ) {