From b1f41e9e8d27fe7a2a64a84e684722baf999879e Mon Sep 17 00:00:00 2001 From: offa <8887756+offa@users.noreply.github.com> Date: Wed, 8 Apr 2026 19:38:44 +0200 Subject: [PATCH] Update Catch 3.14.0 --- conanfile.txt | 2 +- test/CMakeLists.txt | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/conanfile.txt b/conanfile.txt index 08f4398..5b8cad3 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -1,7 +1,7 @@ [requires] yaml-cpp/0.9.0 argparse/3.2 -catch2/3.13.0 +catch2/3.14.0 trompeloeil/49 [generators] diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index adfec90..b781bf9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -7,11 +7,6 @@ function(add_test_suite name) add_executable(${name} ${ARGN}) target_link_libraries(${name} PRIVATE Catch2::Catch2WithMain trompeloeil::trompeloeil) add_test(${name} ${name}) - - # Workaround for catch2 #3076 - if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "22") - target_compile_options(${name} PRIVATE -Wno-c2y-extensions) - endif() endfunction() add_test_suite(ConfigTest ConfigTest.cpp)