Re: Bind C++ template specialized with void parameter

2024-02-29 Thread Gregor Mückl via Digitalmars-d-learn
On Thursday, 29 February 2024 at 10:30:59 UTC, DUser wrote: On Wednesday, 28 February 2024 at 22:48:33 UTC, Gregor Mückl wrote: ... But how can I bind Wrapper\ in D? Specifically, how do I even express that template specialization in D syntax? Did you mean any of these? 1. Parameter speciali

Re: Bind C++ template specialized with void parameter

2024-02-29 Thread DUser via Digitalmars-d-learn
On Wednesday, 28 February 2024 at 22:48:33 UTC, Gregor Mückl wrote: ... But how can I bind Wrapper\ in D? Specifically, how do I even express that template specialization in D syntax? Did you mean any of these? 1. Parameter specialization: ```d extern(C++, class): class Wrapper(T) {...} class