Re: Passing D reimplementation of C++ template as argument to a C++ function

2022-09-25 Thread Nicholas Wilson via Digitalmars-d-learn
On Saturday, 24 September 2022 at 07:04:34 UTC, Gregor Mückl wrote: Hi! I have a D template struct that reimplements a C++ class template with identical memory layout for a set of types that matter to me. Now, I want to use some C++ functions and classes that use these template instances, fro

Deimos libzip bindings review request

2022-09-25 Thread Dmytro Katyukha via Digitalmars-d-learn
Hi, I have created D bindings for [libzip](https://libzip.org/), and i think it would be nice to include these bindings in deimos, because standard [std.zip](https://dlang.org/phobos/std_zip.html) does not allow to work with large zip archives. But i am not sure if i have done it in right way

Re: Detect uninitialized class var access

2022-09-25 Thread Paul Backus via Digitalmars-d-learn
On Sunday, 25 September 2022 at 03:04:45 UTC, Tejas wrote: On Saturday, 24 September 2022 at 23:04:00 UTC, rassoc wrote: On 9/24/22 15:28, Adam D Ruppe via Digitalmars-d-learn wrote: gdb --args ./your_program and then it will tell you all the details you want to know about when this happens.