[Issue 9238] Support rvalue references
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Dec 29 07:35:06 PST 2012
http://d.puremagic.com/issues/show_bug.cgi?id=9238
Andrej Mitrovic <andrej.mitrovich at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |andrej.mitrovich at gmail.com
--- Comment #1 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2012-12-29 07:35:01 PST ---
Does it really block Issue 9218? We've had a discussion in the forums recently
to make `auto ref` a non-template by making the compiler convert this call:
void main()
{
auto b = S() > S(); // assume S has 'int opCmp(const ref A a) const'
}
Into this:
void main()
{
S _hidden1, hidden2;
auto b = _hidden1 > _hidden2;
}
See
http://forum.dlang.org/thread/mailman.2989.1356370854.5162.digitalmars-d@puremagic.com?page=2#post-kbcc62:24192v:242:40digitalmars.com
--
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