[Issue 7003] New: no tuple expansion for c++ mangling
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu Nov 24 15:55:30 PST 2011
http://d.puremagic.com/issues/show_bug.cgi?id=7003
Summary: no tuple expansion for c++ mangling
Product: D
Version: D2
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: dawg at dawgfoto.de
--- Comment #0 from dawg at dawgfoto.de 2011-11-24 15:54:34 PST ---
extern(C++) void foo(Args...)(Args args)
{
}
alias foo!() foov;
// is:_ZN10__T3fooTiZ3fooEu3B1i should be:_ZN10__T3fooTiZ3fooEi
alias foo!(int) fooi;
// is:_ZN8__T3fooZ3fooEu2B0 should be:_ZN8__T3fooZ3fooEv
---
Argument tuples are not expanded and are outputted by
Type::toCppMangle as vendor extension.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list