www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 7003] New: no tuple expansion for c++ mangling

reply d-bugmail puremagic.com writes:
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



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: -------
Nov 24 2011
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7003




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: -------
Nov 25 2011
prev sibling parent d-bugmail puremagic.com writes:
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



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: -------
Nov 12 2012