From 8ba7bc720a42976629666f94813b524d629b7a3b Mon Sep 17 00:00:00 2001 From: DNKpp Date: Sat, 5 Oct 2024 23:17:18 +0200 Subject: [PATCH] docs: add AppleClang-16 to the list of tested-compilers --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 527ef9c49..0e27dfd28 100644 --- a/README.md +++ b/README.md @@ -282,7 +282,7 @@ inheritance) and start building your own. They just have to match the ``mimicpp: There are multiple types of policie, depending on the task they shall fulfill. The expectation policy has full control, whether a match can be made or shall be rejected, while the finalize policy determines, what a mock shall do, when it actually matched (like returning a value or throwing an exception). They can implement arbitrary logic, so feel free to experiment. There is no base type requirement, -they simply have to satisfy either the ``mimicpp::expectation_policy_for``, ``mimicpp::control_policy`` or ``mimicpp::finalize_policy_for_``. +they simply have to satisfy either the ``mimicpp::expectation_policy_for``, ``mimicpp::control_policy`` or ``mimicpp::finalize_policy_for``. --- @@ -410,9 +410,12 @@ As new compilers become available, they will be added to the workflow, but older | Compiler | libstdc++ | libc++ | c++-20 | c++-23 | std-format | fmt | |-------------------|:---------:|:------:|:------:|:------:|:----------:|:---:| +| AppleClang-16.0.61 | ? | x | x | x | x | x | | AppleClang-17.0.6 | ? | x | x | x | x | x | | AppleClang-18.1.6 | ? | x | x | x | x | x | +1 There is an issue with AppleClang-16 and ``boost::filesystem`` on the current ``macos-latest``, but this is just for the boost-test-adapter. Everything else works fine. + --- ## License