Upgrade Catch2

I get a compilation error otherwise

```
_deps/catch2-src/single_include/catch2/catch.hpp:10830:58: error: call to non-‘constexpr’ function ‘long int sysconf(int)’
10830 |     static constexpr std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;
      |                                                          ^~~~~~~~~~~

```
This commit is contained in:
Olivier Goffart 2022-02-21 13:28:54 +01:00
parent 532fd4b65f
commit ea2e91ece9

View file

@ -257,7 +257,7 @@ if(BUILD_TESTING)
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG v2.13.1
GIT_TAG v2.13.8
)
FetchContent_MakeAvailable(Catch2)