<div dir="ltr"><div>How do I define pragma(mangle,"name") for a type?</div><div><br></div><div><div>Use case:</div><div>I'd like to avoid the complications involved in <a href="https://github.com/dlang/druntime/pull/1316/files">https://github.com/dlang/druntime/pull/1316/files</a> [Addition of C++ std::string, std::vector to D #1316]</div></div><div>by directly defining the desired mangle for a c++ std::string (+ other similar use cases):</div><div><br></div><div>```</div><div><br></div><div>pragma(mangle, "NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE")</div><div>struct string_cpp;</div><div><br></div><div><div>extern(C++, ns){</div></div><div><div>  void fun1(string_cpp*a);</div></div><div>  string_cpp fun2();<br></div><div>  void string_cpp fun3(const ref string_cpp a);</div><div>}</div><div><br></div><div><div>```</div><div><br></div><div><br></div><div>The problem is that this mangles fun1 as _ZN2ns4fun1EP10string_cpp , ie, using "string_cpp" instead of "NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE" for the `a` argument of fun1, thus ignoring (silently!) the pragma(mangle).<br></div><div></div></div></div>