Use clang++14 with Cpp-23 on ubuntu-latest (#1921)

This commit is contained in:
Andreas Süßenbach 2024-07-17 13:18:25 +02:00 committed by GitHub
parent a4cbf9c027
commit 77f6a638a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -51,10 +51,10 @@ jobs:
done
done
- name: Loop over build_types (Debug, Release) with cpp_standard 23 for g++-11 and above only
- name: Loop over build_types (Debug, Release) with cpp_standard 23 for compilers supporting that
run: |
# g++-10 does not support Cpp-23
if [ ${{matrix.compiler}} == clang++-15 ] || [ ${{matrix.compiler}} == g++-11 ] || [ ${{matrix.compiler}} == g++-12 ]
if [ ${{matrix.compiler}} != clang++-13 ] && [ ${{matrix.compiler}} != g++-10 ]
then
cpp_standard=23
for build_type in Debug Release

View File

@ -16851,7 +16851,7 @@ namespace VULKAN_HPP_NAMESPACE
m_library = dlopen( "libvulkan.1.dylib", RTLD_NOW | RTLD_LOCAL );
}
# elif defined( _WIN32 )
m_library = ::LoadLibraryA( "vulkan-1.dll" );
m_library = ::LoadLibraryA( "vulkan-1.dll" );
# else
# error unsupported platform
# endif

View File

@ -7094,7 +7094,7 @@ namespace VULKAN_HPP_NAMESPACE
m_library = dlopen( "libvulkan.1.dylib", RTLD_NOW | RTLD_LOCAL );
}
# elif defined( _WIN32 )
m_library = ::LoadLibraryA( "vulkan-1.dll" );
m_library = ::LoadLibraryA( "vulkan-1.dll" );
# else
# error unsupported platform
# endif