Jonathan Wakely
Jonathan Wakely
CSS files should be UTF-8: https://www.w3.org/International/questions/qa-css-charset
https://www.boost.org/users/history/version_1_76_0.html#version_1_76_0.compilers_tested says: - GCC: 4.4.7, 4.5.3, 4.6.3, 5.4.0, 8.0.1 - GCC, C++0x: 4.4.7 - GCC, C++11: 4.7.3, 4.8.5, 4.9.4, 5.4.0, 6.4.0, 7.1.0, 8.0.1 - GCC, C++14: 5.4.0, 5.5.0, 6.4.0, 7.1.0,...
**Describe the bug** C++ types in a nested namespace are not added to a group, even though they are entirely within the opening and closing markers for the group. **Expected...
Depending on which C++ standard library headers have been included there might an abs(float) function already declared in the global namespace, so the definition in this file conflicts with it....
C2x and C++23 add these new preprocessor conditionals, as shorter forms of `#elif defined` and `#elif !defined`. Fixes #13667
I'm not sure what the sentence "Extension define extension points in the app/runtime that can be implemented by extensions, supplying extra files which are available during runtime" is really trying...
```c++ #include "experimental/fundamental/v3/expected2/expected.hpp" using std::experimental::expected; #include struct hurts { hurts() { std::puts("ow that hurts"); } hurts(const hurts&) { std::puts("owow that hurts too"); } ~hurts() { puts("goodbye cruel world"); } };...
There is an ongoing project to increase the parts of the C++ Standard Library that are available for freestanding implementations, i.e. those with no OS, so no I/O and no...
It does actually get initialized when the derived class calls zstd_base::init but setting it in the constructor prevents static analyzers from complaining. A similar fix was made to `lzma_base` in...