From 92d126fc440b3cb140c54421d7387c1781d0f1cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 16 Jun 2024 23:37:21 +0200 Subject: [PATCH] Avoid C++03 in MacOS --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfe21e5..dfad3b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -328,15 +328,15 @@ jobs: #------------------ # Macos 11, clang - toolset: clang - cxxstd: "03,11,14,17,2a" + cxxstd: "11,14,17,2a" os: macos-11 # Macos 12, clang - toolset: clang - cxxstd: "03,11,14,17,20,2b" + cxxstd: "11,14,17,20,2b" os: macos-12 # Macos 13, clang - toolset: clang - cxxstd: "03,11,14,17,20,2b" + cxxstd: "11,14,17,20,2b" os: macos-13 timeout-minutes: 180