Re: D demangler for C++

2022-11-27 Thread Hipreme via Digitalmars-d-announce
On Sunday, 27 November 2022 at 23:12:35 UTC, Witold Baryluk wrote: https://github.com/baryluk/d-demangle-cpp D programming language (dlang) symbol name demangler for C++ [...] Seems like a nice idea integrating to those 3rd party code :) Better debuggability for D code is always nice

Re: Release D 2.101.0

2022-11-27 Thread torhu via Digitalmars-d-announce
On Wednesday, 16 November 2022 at 01:21:12 UTC, rikki cattermole wrote: Yeah, you'll want to use dustmite. Hopefully the project isn't too big. I haven't figured out how to use DustMite, but the error goes away when I compile one file at a time, for some reason.

D demangler for C++

2022-11-27 Thread Witold Baryluk via Digitalmars-d-announce
https://github.com/baryluk/d-demangle-cpp D programming language (dlang) symbol name demangler for C++ ```cpp std::cout << demangle_d::demangle("_D3std5stdio__T8writeflnTaTiZQoFNfxAaiZv") << std::endl; // Will print: void std.stdio.writefln!(char, int)(const char[], int) @safe ``` Goals *