Reintroduce support of separator '::' for len attributes.

This commit is contained in:
asuessenbach 2020-09-03 16:36:39 +02:00
parent 8f09a023b9
commit ae88e94ab4

View File

@ -2405,6 +2405,11 @@ void VulkanHppGenerator::appendFunctionBodyEnhancedLocalReturnVariableVectorSize
// -> replace the '->' by '.' and filter out the leading 'p' to access that value
size = startLowerCase( stripPrefix( params[returnParamIndex].len, "p" ) );
size_t pos = size.find( "->" );
if ( pos == std::string::npos )
{
// other notation possibility: ::
pos = size.find( "::" );
}
assert( pos != std::string::npos );
size.replace( pos, 2, "." );
}