David Fong
David Fong
Hello! What's the status on this PR? I recently discovered it when trying to use nodejs's [`--disallow-code-generation-from-strings`](https://nodejs.org/dist/latest/docs/api/cli.html#cli_disallow_code_generation_from_strings). That flag is a nice security feature kind of like the content-security-policy header....
I wonder if this is happening with the call to `cmake_parse_arguments` at the top of `catch_discover_tests` in `extras/Catch.cmake`. EDIT. I tried a minimal example locally and I don't think that's...
I haven't directly used this feature myself, but have you heard of [ctest's `--build-and-test`](https://cmake.org/cmake/help/latest/manual/ctest.1.html#build-and-test-mode) mode / feature?
Out of curiosity, have you read [their v2-to-v3 migration documentation](https://github.com/catchorg/Catch2/blob/devel/docs/migrate-v2-to-v3.md#top)?
I'm not a contributor to this project, but here's my guess: I think this is partly due to changes between v2 and v3 (where in v3, there are new usage...
You may be interested to read the #2351 thread. particularly [this comment by the maintainer](https://github.com/catchorg/Catch2/issues/2351#issuecomment-1027261216).
Can you link to documentation for `/w14619`? I can't seem to find it / don't know what to search for to find it. Out of curiosity, is this something you...
I have realized two things: 1. This probably wouldn't be as simple to implement as I naively thought. I thought it would be as simple as doing a `set(... PARENT_SCOPE)`,...
@nandanvasudevan I'm curious to hear how this would be useful to you (what would you use it for? How specifically would you use it?). Perhaps there are other ways to...
Not sure if this is true, but using `_` as a macro name _might_ be treading into [this section of the C++ standard](https://en.cppreference.com/w/cpp/language/identifiers): > the identifiers that begin with an...