Closed paulgessinger closed 4 days ago
[!IMPORTANT]
Review skipped
Auto reviews are limited to specific labels.
:label: Labels to auto review (1)
* coderabbitPlease check the settings in the CodeRabbit UI or the
.coderabbit.yaml
file in this repository. To trigger a single review, invoke the@coderabbitai review
command.You can disable this status message by setting the
reviews.review_status
tofalse
in the CodeRabbit configuration file.
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Updated to reset the original value of CMAKE_CXX_STANDARD
or unsetting if it was not set before.
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code
Vector-of-bool's
FindFilesystem.cmake
was updated at some point to include and explicitCMAKE_CXX_STANDARD=17
. We've observed occasionally that on macOS, the find module would fail because it would default to C++14, wherestd::filesystem
is not available (and I guess the experimental implementation has since been removed).This PR updates the
FindFilesystem.cmake
to include this.Fixes #3900