Adjust ci-ubuntu.yml to latest changes of runners.

This commit is contained in:
asuessenbach
2022-12-06 23:17:47 +01:00
parent 4848fc8e6a
commit 5accdbc9d5
3 changed files with 4 additions and 13 deletions

View File

@@ -12966,11 +12966,6 @@ void VulkanHppGenerator::setVulkanLicenseHeader( int line, std::string const & c
{
m_vulkanLicenseHeader.replace( pos, 1, "\n// " );
}
// replace any " \n" with "\n"
for ( size_t pos = m_vulkanLicenseHeader.find( " \n" ); pos != std::string::npos; pos = m_vulkanLicenseHeader.find( " \n", pos ) )
{
m_vulkanLicenseHeader.replace( pos, 2, "\n" );
}
// remove any trailing spaces
m_vulkanLicenseHeader = trimEnd( m_vulkanLicenseHeader );