https://issues.dlang.org/show_bug.cgi?id=22550
Dlang Bot <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull --- Comment #1 from Dlang Bot <[email protected]> --- @tim-dlang created dlang/dmd pull request #13369 "Fix issue 22550 - tail const C++ class not usable on Windows" fixing this issue: - Fix issue 22550 - tail const C++ class not usable on Windows This changes the C++ mangling of const(Class) from "Class const * const" to "Class const *" for Windows, but only if the class type is used at the top of a type. It is a breaking change for code using "Class const * const" in C++, but this code seems to be less common. https://github.com/dlang/dmd/pull/13369 --
