Thread overview
[Issue 7003] New: no tuple expansion for c++ mangling
Nov 24, 2011
dawg@dawgfoto.de
Nov 25, 2011
dawg@dawgfoto.de
Nov 12, 2012
Walter Bright
November 24, 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@puremagic.com
        ReportedBy: dawg@dawgfoto.de


--- Comment #0 from dawg@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: -------
November 25, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=7003



--- Comment #1 from dawg@dawgfoto.de 2011-11-25 08:23:44 PST ---
Actually the template should not appear in the name mangling. Until http://d.puremagic.com/issues/show_bug.cgi?id=7005 is fixed it makes no sense to fix this Bug.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
November 12, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7003


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|                            |FIXED


--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> 2012-11-12 12:32:39 PST ---
https://github.com/D-Programming-Language/dmd/pull/532

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------