From cf7be25ec9330e4d7801327d14b4c5b152fb48cd Mon Sep 17 00:00:00 2001 From: skypjack Date: Thu, 29 Jan 2026 15:01:26 +0100 Subject: [PATCH] workflow: try to enable C++23 --- .github/workflows/build.yml | 2 +- .github/workflows/sanitizer.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd11493c4..34f58df10 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,7 +85,7 @@ jobs: matrix: os: [windows-latest, macOS-latest, ubuntu-latest] id_type: ["std::uint32_t", "std::uint64_t"] - cxx_std: [cxx_std_20] + cxx_std: [cxx_std_20, cxx_std_23] timeout-minutes: 15 runs-on: ${{ matrix.os }} diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml index 66019e420..fb4eaa49f 100644 --- a/.github/workflows/sanitizer.yml +++ b/.github/workflows/sanitizer.yml @@ -11,7 +11,7 @@ jobs: matrix: compiler: [clang++] id_type: ["std::uint32_t", "std::uint64_t"] - cxx_std: [cxx_std_20] + cxx_std: [cxx_std_20, cxx_std_23] runs-on: ubuntu-latest