Skip to content

Commit

Permalink
Use clang++14 with Cpp-23 on ubuntu-latest (#1921)
Browse files Browse the repository at this point in the history
  • Loading branch information
asuessenbach authored Jul 17, 2024
1 parent a4cbf9c commit 77f6a63
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion vulkan/vulkan.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion vulkan/vulkansc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 77f6a63

Please sign in to comment.