mirror of
https://github.com/KhronosGroup/Vulkan-Hpp
synced 2024-11-08 13:40:08 +00:00
Change an assertion into an error check.
This commit is contained in:
parent
59bc1c223a
commit
14651d6d73
@ -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" )
|
||||
|
Loading…
Reference in New Issue
Block a user