Switch to C++20 standard for all CMake targets. (#2536)

All our platforms support C++20 now, so update to C++20 standard
for language features such as concepts, designated initializers,
range-based for initializers, and consteval. This PR only switches
the compiler flags to C++20, no other changes.

[ROCm/composable_kernel commit: 67b2821623]
This commit is contained in:
John Shumway
2025-07-22 11:52:10 -06:00
committed by GitHub
parent 545819c362
commit 23e4294747
5 changed files with 6 additions and 6 deletions

View File

@@ -1,3 +1,3 @@
CC=g++
$CC -Wall -std=c++17 -Iinclude -O3 block_swizzle_test.cpp -o block_swizzle_test.exe
$CC -Wall -std=c++20 -Iinclude -O3 block_swizzle_test.cpp -o block_swizzle_test.exe