[Issue 17359] C++ Interfacing: function with 'static' array parameter cannot be linked (x64)
via Digitalmars-d-bugs
digitalmars-d-bugs at puremagic.com
Sat Apr 29 02:39:03 PDT 2017
https://issues.dlang.org/show_bug.cgi?id=17359
kinke at gmx.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |kinke at gmx.net
--- Comment #2 from kinke at gmx.net ---
I think this is no DMD bug. The problem is that Microsoft unlike gcc mangles
the `float color[3]` variant as `float * const color`, which can't be
represented in D directly (const pointer to mutable data).
--
More information about the Digitalmars-d-bugs
mailing list