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: nob...@puremagic.com
        ReportedBy: d...@dawgfoto.de


--- Comment #0 from d...@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: -------

Reply via email to