Relax an assertion.

This commit is contained in:
asuessenbach 2021-03-10 12:34:47 +01:00
parent 7ce244b2a9
commit 3cc1aae3f8

View File

@ -3879,13 +3879,14 @@ std::string VulkanHppGenerator::constructCallArgumentEnhanced( ParamData const &
std::string name = startLowerCase( stripPrefix( param.name, "p" ) ); std::string name = startLowerCase( stripPrefix( param.name, "p" ) );
if ( param.len.empty() ) if ( param.len.empty() )
{ {
assert( param.arraySizes.empty() && !param.optional ); assert( param.arraySizes.empty() );
if ( beginsWith( param.type.type, "Vk" ) ) if ( beginsWith( param.type.type, "Vk" ) )
{ {
argument = "reinterpret_cast<" + param.type.type + " *>( &" + name + " )"; argument = "reinterpret_cast<" + param.type.type + " *>( &" + name + " )";
} }
else else
{ {
assert( !param.optional );
argument = "&" + name; argument = "&" + name;
} }
} }