Christopher Di Bella
Christopher Di Bella
## Description It would be wonderful if doctest supported checking compile-time expressions and run-time expressions _together_. I'd like to check that my `constexpr` functions indeed work as compile-time, and at...
Checklist - [x] This problem exists even with the setting `"C_Cpp.enhancedColorization": "Disabled"` - [ ] This bug exists for C - [x] This bug exists for C++ - [ ]...
After running IWYU on some ChromeOS third-party packages, I've observed that it pulls in a lot of the implementation headers instead of the standard ones. This can be fixed either...
# Context I occasionally rebuild compiler images and push them to DockerHub, and it'd be great to have an invalidate button so that one can conveniently update the CirrusCI-prebuilt image....
# Motivation Consider ```cpp template concept invocable = requires(F&& f, Args&&... args) { invoke(std::forward(f), std::forward(args)...); }; ``` If a type does not satisfy the above requirement, then a diagnostic like...
I'd like to integrate a clang-concepts-built clang-tidy into my CMake project, which means that it's dependent on GCC flags when building with GCC. Since GCC uses `-fconcepts`, this means that...
Both `CHECK` and `TEST_CASE` were giving warnings at the point of use. This commit makes it so that they do not (for now). Checks disabled: * `cppcoreguidelines-avoid-do-while` (for `CHECK`) *...
Consider this header `stdio.h`: ```cpp // exists so it can be put in a modulemap... #include_next // and also so we can mark a few things nodiscard [[nodiscard]] FILE* tmpfile();...
**Steps to reproduce** 1. Follow [Sy Brand's tutorial](https://devblogs.microsoft.com/cppblog/clear-functional-c-documentation-with-sphinx-breathe-doxygen-cmake/) for setting up Breathe. 2. Add the following to `CatCutifier.h` ```cpp /** A fluffy feline */ struct cat { /** Make this...
I've got a page that lists the entire derivation tree for my types, so it's not necessary to see the note "subclassed by" for these types. It'd be good if...