From 96fe7ed2c668e9bbe945f2909b3a843da3ee2c6b Mon Sep 17 00:00:00 2001 From: asuessenbach Date: Tue, 17 Nov 2020 11:57:50 +0100 Subject: [PATCH] Fixed a typo in functions enumerating chained structures. --- VulkanHppGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VulkanHppGenerator.cpp b/VulkanHppGenerator.cpp index b30f645..39d0abe 100644 --- a/VulkanHppGenerator.cpp +++ b/VulkanHppGenerator.cpp @@ -3729,7 +3729,7 @@ std::string { "nodiscard", nodiscard }, { "secondCallArguments", constructCallArgumentsEnhanced( commandData.handle, commandData.params, false, INVALID_INDEX ) }, - { "structureChainAllocator", withAllocator ? ( ", structureChainAllocator" ) : "" }, + { "structureChainAllocator", withAllocator ? ( "( structureChainAllocator )" ) : "" }, { "typenameCheck", typenameCheck }, { "vectorElementType", vectorElementType }, { "vectorName", vectorName },