Benjamin Buch
Benjamin Buch
We convert our documentation from Markdown to PDF using Pandoc. Usually several Markdown files are converted to one PDF file. Links between Markdown files that are included in the same...
Minimal example: ```cpp #include // a user defined container like type (in practice, for example, a matrix) struct A: std::vector{ using std::vector::vector; }; // with user defined print std::ostream& operator
OpenCV can be compiled against Qt5 and Qt6. The Contrib CVV module depends on Qt5 and has received an incomplete patch with #3072 that allows configuring but not compiling. CVV...
On the develop branch hana::pair isn't is_trivially_move_constructible anymore! On the master branch it is. ``` #include #include int main(){ auto p = boost::hana::make_pair(0, 0); static_assert(std::is_trivially_copy_constructible< decltype(p) >::value, ""); static_assert(std::is_trivially_move_constructible< decltype(p)...
In the current Networking TS (N4734) `basic_waitable_timer::cancel()` is not `noexcept`. Is this because of memory allocation while canceling or was the `noexcept` simply forgotten? The question is probably more important...
Somewhere **after** 287d83acae2339d8811b00112bf244cbeac953d7 was a commit which broke the header file install. All files from the directories `cfg`, `details`, `sinks` and `fmt` are installed into the plain `spdlog` directory instead...
[Offical website](https://jpeg.org/jpegxl/), [Info page](https://jpegxl.info/) In my opinion, JPEG XL is currently by far the most advanced data format for raster graphics. We would like to establish it in our software...
**Describe the bug** I need to build without internet connection. So I build and install dependencies manuelly. You download Robinmap [here](https://github.com/AcademySoftwareFoundation/OpenImageIO/blob/f4e7ac1407ddd7d1119a70f64e394ab28ff9a0c7/src/cmake/externalpackages.cmake#L298C1-L298C76): ```cmake set (ROBINMAP_GIT_REPOSITORY "https://github.com/Tessil/robin-map") ``` You use a [very...