https://issues.dlang.org/show_bug.cgi?id=19498

Walter Bright <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Walter Bright <[email protected]> ---
wchar_t should not be used in D code unless it is directly interfacing with C++
code that uses wchar_t in its parameter list.

The bug here is that core\druntime.d is calling a D function rt_loadLibraryW()
which is obsoletely using wchar_t in its signature.

The fix is to use WCHAR instead and fix rt\dmain2.d to use WCHAR.

--

Reply via email to