Change an assertion into an error check.

This commit is contained in:
asuessenbach 2021-02-22 14:00:51 +01:00
parent 59bc1c223a
commit 14651d6d73

View File

@ -8141,8 +8141,9 @@ void VulkanHppGenerator::readExtension( tinyxml2::XMLElement const * element )
#if !defined( NDEBUG )
else if ( attribute.first == "provisional" )
{
assert( attribute.second == "true" );
assert( platform == "provisional" );
check( platform == "provisional",
line,
"while attribute <provisional> is set to \"true\", attribute <platform> is not set to \"provisional\"" );
}
#endif
else if ( attribute.first == "requires" )